body {
    font-family: "Roboto", sans-serif;
    background: var(--moto-gray);
    color: #1a1a1a;
}

.top-bar {
    background-color: white;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 16px;
    text-align: center;
}

.top-bar h1 {
    margin: 0;
    font-size: 24px;
}

.top-bar p {
    color: #555;
    margin: 4px 0 0;
}

.left-panel {
    width: 51%;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-right: 20px;
}

.left-panel label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
}

.url-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.left-panel input[type="text"],
.left-panel textarea {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 100%;
}

.tools-icon {
    font-size: 24px;
    color: #006534;
    position: absolute;
    top: 10px;
    right: 10px;
}

.left-panel .options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0;
}

.left-panel .options label {
    font-weight: normal;
}


.left-panel .button {
    padding: 5px 12px;
    border: none;
    background-color: #ebf6f7;
    color: #006534;
    border-radius: 5px;
    cursor: pointer;
    position: absolute;
    top: 3px;
    right: 3px;
    text-decoration: underline;
}

.left-panel button:hover,
.left-panel button:active {
    background-color: #006534;
    color: #ebf6f7;
    text-decoration: none;
}

.right-panel {
    flex: 1;
    width: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #fff;
}

#right-preview-panel.desktop-view {
    width: 100%;
    max-width: 100%;
}

#right-preview-panel.mobile-view {
    max-width: 390px !important;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.search-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    max-width: 100%;
    margin: 0;
    justify-content: center;
    flex-wrap: wrap;
}

.search-bar input {
    flex: 1;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.tabs {
    display: flex;
    gap: 15px;
    border-bottom: 1px solid #ccc;
    font-size: 14px;
    font-family: "Roboto", sans-serif;
    margin-top: 10px;
    color: #1a73e8;
}

.tabs .span {
    border-style: solid;
    border-width: 0 0 3px 0;
    border-color: #1a73e8;
    color: #1a73e8;
    height: 30px;
}

.serp-snippet {
    margin-left: 10px;
    margin-top: 10px;
    font-family: "Roboto", sans-serif;
}


.serp-snippet .url {
    font-size: 12px;
    color: #006621;
    display: flex;
    align-items: center;
    gap: 6px;
}

.serp-snippet #url-text-name {
    font-size: 14px;
    color: black;
}

.serp-snippet #url-text {
    font-size: 12px;
    color: black;
}



.serp-snippet .url img {
    width: 20px;
    height: 20px;
    margin: auto;
}

.serp-snippet .title {
    font-size: 18px;
    color: #1b0eab;
    margin: 4px 0;
}

.serp-snippet .desc {
    font-size: 14px;
    color: #545454;
}

.bar {
    height: 14px;
    background: linear-gradient(to right, #ccc 40%, #bcbcf0 60%);
    border-radius: 4px;
}

#first {
    background: #5f6368;
    width: 30%;
    opacity: 0.3;
    min-height: 25px;
    cursor: default;
    margin-bottom: 15px;
}

#second {
    background: #1a0dab;
    width: 60%;
    min-height: 25px;
    opacity: 0.3;
    margin-bottom: 15px;
}

#third {
    background: #4d5156;
    width: 90%;
    min-height: 50px;
    opacity: 0.3;
    margin-bottom: 15px;
}

.h3 {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  padding: 20px 20px 0 20px;
}

@media screen and (max-width:992px) {
    .action-buttun {
        flex-wrap: wrap;
    }

    .responsive {
        flex-wrap: wrap;
    }

    .left-panel{
        width: 100%;
        margin: 0;
    }

    .right-panel{
        margin-top: 20px;
    }

    .auto-left{
        margin-left: auto;
    }

}

@media screen and (max-width:376px) {
    .tabs{
        flex-wrap: wrap;
    }
}