.serp-example-tool-container {
    max-width: 100%;
    background-color: #e0e7e6;
}

.snippet-wrapper {
    padding: 1em;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    font-family: Arial, sans-serif !important
}

@media (max-width: 1200px) {
    .snippet-wrapper {
        grid-template-columns: 1fr;
    }

    .input-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .serp-desktop {
        display: none;
    }
}



.serp-mobile,
.serp-desktop {
    padding: 1em;
}

.serp-mobile h4,
.serp-desktop h4 {
    margin-top: 0;
    font-family: 'Red Hat Display';
    font-weight: 700;
    color: #000000 !important;
}

/* Styling for the search result */
.serp-result-container {
    border: 1px solid #ddd;
    padding: 10px;
    width: 600px;
    background-color: #fff;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.serp-result-container-mobil {
    max-width: 360px;
    padding: 10px;
    position: relative;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}

.serp-result-header {
    display: flex;
    flex-direction: row;
    gap: 1em;
}

.serp-result-site-image {
    border-radius: 50%;
    border: 1px solid gray;
    width: auto;
    display: inline-flex;
    background-color: #fff;
    justify-content: center;
    align-items: center;
}

a#title,
a#title-mobile {
    color: #1a0dab;
    font-family: Arial, sans-serif !important;
    word-wrap: break-word;
    letter-spacing: normal;
}

a#title:hover,
a#title-mobile:hover {
    color: #1a0dab;
    font-family: Arial, sans-serif !important;
    word-wrap: break-word;
}

.serp-result-site-image img {
    height: 18px;
    width: 18px;
    margin: 0.5em;
}

.serp-result-heading h3 {
    margin-bottom: 3px;
    font-size: 20px;
}

.serp-result .site-information {
    display: flex;
    padding: 0;
    align-items: center;
    padding-bottom: 0;
}

.serp-result .site-image {
    background-color: #fff;
    border: 1px solid #3c4043;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 26px;
    width: 26px;
    margin-right: 12px;
    vertical-align: middle;
}

.serp-domain {
    color: #202124;
    font-size: 14px;
    display: block;
    line-height: 20px;
    white-space: nowrap;
}

.serp-path {
    font-size: 12px;
    line-height: 18px;
    color: #4d5156;
    text-overflow: ellipsis;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    flex-direction: row;
}

.serp-result-description p {
    word-wrap: break-word;
    font-size: 14px;
    margin-bottom: 0;
}

.input-group {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
}

.input-wrapper {
    margin: 1em;
    display: flex;
    flex-direction: column;
    max-width: 600px;
    font-size: 1em;
}

.input-wrapper label {
    display: inline-block;
    line-height: normal;
    font-size: 20px;
    font-family: 'Red Hat Display';
    font-weight: 700;
    color: #000000;
    margin-bottom: 5px;
}

input {
    height: 60px;
    background-color: #fff;
    color: #5e5e5e;
    font-size: 18px;
    border-width: 1px;
    padding: 0 1em;
    outline: 0;
    transition: all .2s ease;
}

textarea {
    background-color: #fff;
    color: #5e5e5e;
    font-size: 18px;
    border-width: 1px;
    padding: 0.5em 15px;
    outline: 0;
    transition: all .2s ease;
}

input:focus,
textarea:focus {
    border-color: #00a984;
}

.input-with-button {
    display: flex;
    align-items: center;
}

.input-with-button input {
    flex: 1;

    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.serp-fetch-url-button {
    position: relative;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    padding: 1em 1em;
    background: #00a984;
    font-family: "Red Hat Display";
    border: none
}

.snippet-config-container {
    padding: 1em;
    display: flex;
}

@media (max-width: 1200px) {
    .snippet-config-container {
        flex-wrap: wrap;
    }
}

/* Additional CSS styles for smileys */
.emoji {
    font-size: 16px;
}

.emoji-good {
    color: #00a984;
}

.emoji-risky {
    color: orange;
}

.emoji-bad {
    color: red;
}

.spinner {
    position: relative;
    z-index: 1000;
}

.spinner::before {
    content: "";
    display: block;
    position: relative;
    width: 18px;
    height: 18px;
    margin: auto;
    border: 3px solid transparent;
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: button-loading-spinner 1s ease infinite;
}

.highlight {
    font-weight: bold;
}

@keyframes button-loading-spinner {
    from {
        transform: rotate(0turn);
    }

    to {
        transform: rotate(1turn);
    }
}

@media (max-width: 425px) {

    .snippet-wrapper {
        padding: 0.5em;
    }

    .serp-mobile {
        padding: 0;
    }

    .serp-result-site-image {
        display: none;
    }

    .serp-result-heading h3 {
        margin-top: 5px;
        margin-bottom: 5px;
    }

    .snippet-config-container {
        padding: 0;
    }

    .serp-fetch-url-button {
        font-size: 14px;
        height: 40px;
        padding: 0;
    }

    .input-wrapper {
        margin: 0.5em;
    }

    .input-wrapper label {
        font-size: 14px !important;
    }

    input {
        font-size: 14px !important;
        height: 40px !important;
    }

    textarea {
        font-size: 14px !important;
    }

    .emoji {
        font-size: 12px;
    }

}

.accordion {
    display: flex;
    flex-direction: column;
    margin: 1em;
}

/* Style for accordion items */
.accordion-item {
    border: 1px solid #dbdbdb;
    margin-bottom: 5px;
}

/* Style for accordion headers */
.accordion-header {
    background-color: #fff;
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 22px;
    font-family: "Red Hat Display";
    font-weight: 700;
}

.accordion-header i {
    color: #00a984;
}

/* Style for accordion content */
.accordion-content {
    display: none;
    padding: 10px;
    background-color: #fff;
}

/* Style to show active accordion item */
.accordion-item.active .accordion-content {
    display: block;
}

/* ADD SYMBOLS */
.select-emoji-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.emoji-insert {
    cursor: pointer;
    font-size: 20px;
    margin: 5px;
}


/* ADD RICHSNIPPET */
.current-date-snippet {
    display: none;
    color: #70757a !important;
    line-height: 1.58;
    font-family: arial, sans-serif;
    font-size: 14px;
}


/* ADD USPs */
.usp-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.usp-item {
    cursor: pointer;
    background-color: #fff;
    padding: 5px;
    font-size: 16px;
    color: #000000;
}

/* ADD CTAa */
.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.cta-item {
    cursor: pointer;
    background-color: #fff;
    padding: 5px;
    font-size: 16px;
    color: #000000;
}

.richsnippet-button {
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    background: #00a984;
    font-family: "Red Hat Display";
    border: none;
}

.serp-result-richsnippets {
    display: inline-flex;
    gap: 1em;
}

.rating span.star-span:before {
    content: "\2605";
    position: absolute;
    color: gold;
}

.richsnippet-review {
    display: none;
    color: #70757a !important;
    line-height: 1.58;
    font-family: arial, sans-serif;
    font-size: 14px;
}

.richsnippet-price {
    display: none;
    color: #70757a !important;
    line-height: 1.58;
    font-family: arial, sans-serif;
    font-size: 14px;
}

.richsnippet-available {
    display: none;
    color: #70757a !important;
    line-height: 1.58;
    font-family: arial, sans-serif;
    font-size: 14px;
}


.serp-result-richsnippets p {
    color: #000;
    margin: 0;
}

.richsnippet-item label {
    color: #000;
    line-height: 1.58;
    font-size: 14px;
    display: inline-flex;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5em;
}

.richsnippet-item label input {
    height: auto;
}

.tooltip-icon {
    cursor: help;
    margin-left: 0.25em;
    /* Abstand zwischen Text und Icon anpassen */
    color: #00a984;
    /* Farbe des Icons anpassen */
}

.tooltip-modal {
    font-family: 'Red Hat Display';
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s ease;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    padding: 10px;
    font-size: 16px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


.tooltip-modal p {
    margin: 0;
}

.tooltip-modal h6 {
    margin: 0;
}

.tooltip-modal li::marker {
    color: #00a984;
}

.show-tooltip.tooltip-modal {
    visibility: visible;
    opacity: 1;
}

.tooltip-label {
    position: relative;
    display: inline-block;
}

.ai-optimization>button {
    position: relative;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
    padding: 1em 1em;
    background: #00a984;
    font-family: "Red Hat Display";
    border: 1px solid #00a984;
}

.ai-optimization>button:last-child {
    margin-top: 1em;
}