html {
    scroll-behavior: smooth;
    }
    body {
    background-color: #f2f2f2;
    font-family: 'Roboto', sans-serif;
    }
    
    .synonym_container {
    width: 100%;
    padding: 130px 30px 45px 30px;
    max-width: 1000px;
    min-height: 925px;
    margin: 0 auto;
    }
    
    .synonym_inner {
    margin: 0 auto;
    width: 100%;
    font-size: 22px;
    }
    
    .searched_synonym {
        font-family: var(--standard-text-font);
        font-weight: bold;
        margin-bottom: 20px;
    }
    
    .synonymer {
    width: 100%;
    background-color: #fff;
    padding: 30px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .synonym {
    list-style: none;
    }
    
    .synonym_anchor {
    padding: 10px 15px;
    border-radius: 100px;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    text-decoration: none;
    hyphens: auto;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    }
    
    .dark_blue {
    background-color: #1F409B;
    color: white;
    }
    
    .blue {
    background-color: #8ECEF9;
    color: black;
    }
    
    .cyan {
    background-color: #B0EFF9;
    color: black;
    }
    
    .synonym_anchor:hover {
    transform: scale(1.05);
    }
/*SECTION 2 */
.example_sentences_container {
    background-color: white;
    margin-top: 35px;
}
.example_sentences_inner {
    padding: 30px;
}
.example_sentence_header {
    font-family: var(--standard-text-font);
}
.example_sentences_disclaimer {
    font-family: var(--standard-text-font);
    margin: 10px 0;
    font-size: 16px;
}
.example_sentence {
    font-family: var(--standard-text-font);
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0.01em;
    list-style: auto;
    word-break: break-word;
    list-style-position: inside;
}

/*SECTION 3 */
.alphabetic_ordered_lexikon {
    width: 100%;
    border: 1px solid #ddd;
    margin: 35px 0;
}
.lexikon_heading {
    background-color: #142c79;
    color: #ffffff;
    font-family: var(--standard-heading-font);
    padding: 10px;
    font-weight: 500;
}
.lexikon_content {
    background-color: #fdfdfd;
    padding: 10px 10px 0 10px;
}
.lexikon_alphabetic_text {
    list-style: none;
    border-bottom: 1px solid #ddd;
    padding: 7px 0 7px 5px;
}
.lexikon_alphabetic_anchor {
    text-decoration: none;
    color: black;
    font-family: var(--standard-text-font);
}
.lexikon_alphabetic_anchor:hover {
    text-decoration: underline;
}
.current_word {
    font-weight: 600;
    cursor: default;
}
.current_word:hover {
    text-decoration: none;
}
@media screen and (max-width: 950px) {
    .synonymer {
    padding: 20px 0;
    }
    .synonym_container {
    padding: 80px 10px 30px 10px;
    background-color: #f7f7f7;
    }
    .searched_synonym {
    font-size: 36px;
    }
    .synonym_anchor {
    font-size: 16px;
    padding: 12px 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    }
    
    @media screen and (max-width: 750px) {
    .synonymerr {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    }
    .synonym_container {
    min-height: unset;
    }
    }
    
    @media screen and (max-width: 650px) {
    .synonymerr {
    grid-template-columns: repeat(auto-fill, minmax(159px, 70px));
    gap: 20px 40px;
    }
    }
    .data-sources {
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        padding: 20px;
        margin: 20px 0;
    }
    
    .data-sources p {
        margin-bottom: 10px;
    }
    
    .data-sources ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
    
    .data-sources li {
        margin-bottom: 10px;
    }
    
    .data-source-link {
        color: #428bca;
        text-decoration: none;
    }
    
    .data-source-link:hover {
        text-decoration: underline;
    }
    
    .data-source-license {
        color: #555;
        font-size: 90%;
    }
    
    .cc-link {
        display: inline-block;
        margin-top: 10px;
    }
    
    .cc-image {
        border: none;
    }
    .cc_content {
        margin: 20px 0;
    }
.cc {
  display: inline-block;
  padding: 0.1em 0.4em;
  margin-left: 0.2em;
  font-size: 90%;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background-color: #777;
  border-radius: 0.25em;
  text-decoration: none;
}

.cc:hover,
.cc:focus,
.cc:active {
  color: #fff;
  background-color: #888;
}