/* ========== GLOBAL VARIABLES ========== */
:root {
    --search-width: 1100px;
    --header-padding: 30px;
    --gap: 15px;
}

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: arial, sans-serif;
    background: #fff;
    color: #202124;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ========== CONTAINER ========== */
.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
}

/* ========== HEADER - INDEX PAGE ========== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px var(--header-padding);
    font-size: 13px;
    flex-shrink: 0;
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: var(--gap);
}

.header a {
    color: #202124;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 0.1px;
}

.header a:hover {
    text-decoration: underline;
}

.apps-icon {
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.2s ease;
    line-height: 1;
    color: #5f6368;
}

.apps-icon:hover {
    background: #f1f3f4;
}

.sign-in-btn {
    background: #1a73e8;
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.2px;
}

.sign-in-btn:hover {
    background: #1557b0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ========== MAIN CONTENT - INDEX PAGE ========== */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-top: -60px;
}

/* ========== LOGO ========== */
.logo {
    margin-bottom: 30px;
}

.logo img {
    height: 92px;
    width: auto;
    display: block;
}

/* ========== SEARCH BOX - INDEX PAGE (LEBAR 1100px) ========== */
.search-box {
    position: relative;
    width: var(--search-width);
    max-width: 100%;
    margin: 0 auto;
}

.search-icon-svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa0a6;
    font-size: 18px;
    pointer-events: none;
}

.voice-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    color: #5f6368;
}

.voice-icon:hover {
    opacity: 0.7;
}

#searchInput {
    width: 100%;
    padding: 14px 50px 14px 45px;
    font-size: 16px !important;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    outline: none;
    background: white;
    color: #202124;
    transition: all 0.2s ease;
    font-family: arial, sans-serif;
    letter-spacing: 0.2px;
}

#searchInput:hover,
#searchInput:focus {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.15);
    border-color: rgba(223, 225, 229, 0);
}

#searchInput::placeholder {
    color: #9aa0a6;
    font-weight: 400;
}

/* ========== SEARCH BUTTONS ========== */
.search-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-search,
.btn-lucky {
    padding: 10px 24px;
    font-size: 14px;
    border: 1px solid #f8f9fa;
    border-radius: 4px;
    background: #f8f9fa;
    color: #3c4043;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: arial, sans-serif;
    letter-spacing: 0.2px;
    min-width: 140px;
}

.btn-search:hover,
.btn-lucky:hover {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border-color: #dadce0;
}

.btn-search:active,
.btn-lucky:active {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

/* ========== LANGUAGE TEXT ========== */
.language-text {
    margin-top: 30px;
    font-size: 13px;
    color: #4d5156;
    letter-spacing: 0.2px;
}

.language-text a {
    color: #1a0dab;
    text-decoration: none;
    margin: 0 4px;
    transition: text-decoration 0.2s ease;
}

.language-text a:hover {
    text-decoration: underline;
}

/* ========== FOOTER - INDEX PAGE ========== */
.footer {
    background: #f2f2f2;
    flex-shrink: 0;
    margin-top: auto;
    width: 100%;
}

.footer-top {
    padding: 15px var(--header-padding);
    border-bottom: 1px solid #dadce0;
    color: #70757a;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px var(--header-padding);
    flex-wrap: wrap;
    gap: 10px;
}

.footer-left,
.footer-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom a {
    color: #70757a;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.2px;
    transition: text-decoration 0.2s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ========== RESULT PAGE STRUCTURE ========== */
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    flex: 1;
}

/* ========== HEADER - RESULT PAGE ========== */
.google-header {
    background: white;
    padding: 10px 20px;
    border-bottom: 1px solid #dadce0;
    position: sticky;
    top: 0;
    z-index: 100;
    flex-shrink: 0;
}

.header-container {
    max-width: calc(var(--search-width) + 2 * var(--header-padding));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.enosi-logo-small {
    flex-shrink: 0;
}

.enosi-logo-small img {
    height: 30px;
    width: 95px;
}

.search-form-header {
    flex: 1;
    max-width: var(--search-width);
}

.search-box-header {
    position: relative;
    width: 100%;
}

.search-box-header input {
    width: 100%;
    padding: 8px 100px 8px 20px;
    font-size: 16px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    outline: none;
    background: white;
    color: #202124;
    height: 44px;
}

.search-box-header input:hover,
.search-box-header input:focus {
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.15);
}

.search-icons {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
}

.voice-icon-header {
    font-size: 18px;
    cursor: pointer;
}

.search-btn-header {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #4285f4;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* ========== NAVIGATION ========== */
.search-nav {
    background: white;
    border-bottom: 1px solid #dadce0;
    padding: 0 20px;
    flex-shrink: 0;
}

.nav-container {
    max-width: calc(var(--search-width) + 2 * var(--header-padding));
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 12px 0;
}

.nav-link {
    color: #5f6368;
    text-decoration: none;
    font-size: 13px;
    padding-bottom: 12px;
    border-bottom: 3px solid transparent;
}

.nav-link.active {
    color: #1a73e8;
    border-bottom-color: #1a73e8;
}

.nav-link:hover {
    color: #1a73e8;
}

.nav-link.tools {
    margin-left: auto;
}

/* ========== MAIN CONTENT - RESULT PAGE ========== */
/* KUNCI: Gunakan flex + margin auto untuk alignment sempurna */
.results-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 0 0;
}

/* ========== RESULTS CONTAINER - SEJAJAR DENGAN SEARCH BOX ========== */
.results-container {
    width: var(--search-width);
    max-width: 100%;
    margin: 0 auto;
    padding: 0 0 40px 0;
}

/* ========== RESULTS STYLES ========== */
.results-stats {
    color: #70757a;
    font-size: 14px;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e8eaed;
}

.result-item {
    margin-bottom: 32px;
    padding: 4px 0;
    transition: background 0.15s ease;
    border-radius: 4px;
}

.result-item:hover {
    background: rgba(0, 0, 0, 0.02);
}

.result-item:active {
    background: rgba(0, 0, 0, 0.04);
}

.result-url-display {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #202124;
    margin-bottom: 6px;
    flex-wrap: wrap;
    letter-spacing: 0.15px;
}

/* ========== FAVICON - PERBAIKAN ========== */
.favicon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #e8eaed;
    padding: 2px;
    object-fit: contain;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.favicon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

/* ========== FAVICON - DARK MODE ========== */
@media (prefers-color-scheme: dark) {
    .favicon {
        background: #303134;
        border-color: #5f6368;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
}

/* ========== FAVICON - RESPONSIVE ========== */
@media screen and (max-width: 768px) {
    .favicon {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
        padding: 2px;
    }

    #searchInput {
        font-size: 16px !important; /* Jangan diubah ke 14px atau 13px */
        padding: 12px 45px 12px 40px; /* Sesuaikan padding agar tetap rapi */
    }
}

@media screen and (max-width: 480px) {
    .favicon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
        padding: 1px;
    }

    #searchInput {
        font-size: 16px !important; /* Tetap 16px, jangan dikurangi */
        padding: 10px 40px 10px 35px;
    }
}

.url-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 1px;
}

.site-name {
    color: #202124;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.2px;
    line-height: 1.4;
}

.full-url {
    font-size: 12px;
    color: #4d5156;
    letter-spacing: 0.15px;
    line-height: 1.3;
    opacity: 0.85;
}

.amp-badge {
    display: inline-block;
    background: #4285f4;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.result-title-link {
    font-size: 20px;
    color: #1a0dab;
    text-decoration: none;
    display: block;
    margin: 6px 0 4px 0;
    letter-spacing: 0.1px;
    line-height: 1.4;
    font-weight: 400;
}

.result-title-link:hover {
    text-decoration: underline;
}

.result-title-link strong {
    font-weight: 700;
    letter-spacing: 0.1px;
}

.result-description {
    font-size: 14px;
    color: #4d5156;
    line-height: 1.7;
    margin: 4px 0 6px 0;
    letter-spacing: 0.15px;
    word-spacing: 0.3px;
    max-width: 650px;
}

.result-description strong {
    font-weight: 700;
    color: #202124;
    letter-spacing: 0.1px;
}

/* ========== PAGINATION ========== */
.google-pagination {
    margin: 30px 0 20px;
    text-align: left;
}

.pag-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pag-link {
    color: #1a0dab;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
}

.pag-link:hover {
    background: #f1f3f4;
}

.pag-number {
    color: #1a0dab;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
}

.pag-number:hover {
    background: #f1f3f4;
}

.pag-number.active {
    color: #1a0dab;
    font-weight: 700;
}

/* ========== NO RESULTS ========== */
.no-results-container {
    padding: 60px 20px;
    text-align: left;
    width: var(--search-width);
    max-width: 100%;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.no-results-title {
    font-size: 24px;
    font-weight: 400;
    color: #202124;
    margin-bottom: 10px;
}

.no-results-title strong {
    font-weight: 700;
}

.no-results-subtitle {
    font-size: 16px;
    color: #5f6368;
    margin-bottom: 30px;
}

.no-results-suggestions {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px 30px;
    text-align: left;
    margin-bottom: 30px;
}

.no-results-suggestions h4 {
    font-size: 14px;
    color: #202124;
    margin-bottom: 10px;
}

.no-results-suggestions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.no-results-suggestions ul li {
    padding: 5px 0;
    color: #4d5156;
    font-size: 14px;
}

.no-results-example {
    margin-bottom: 30px;
}

.no-results-example p {
    color: #5f6368;
    font-size: 14px;
    margin-bottom: 15px;
}

.example-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-start;
}

.example-tag {
    display: inline-block;
    padding: 8px 16px;
    background: #f1f3f4;
    color: #1a0dab;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
}

.example-tag:hover {
    background: #e8eaed;
    text-decoration: underline;
}

.btn-back-home {
    padding: 10px 24px;
    background: #1a73e8;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-back-home:hover {
    background: #1557b0;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ========== FOOTER - RESULT PAGE ========== */
.google-footer {
    background: #f2f2f2;
    flex-shrink: 0;
    margin-top: auto;
    width: 100%;
}

.google-footer .footer-top {
    padding: 15px var(--header-padding);
    border-bottom: 1px solid #dadce0;
    color: #70757a;
    font-size: 15px;
    letter-spacing: 0.2px;
}

.google-footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px var(--header-padding);
    flex-wrap: wrap;
    gap: 10px;
}

.google-footer .footer-links-left,
.google-footer .footer-links-right {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.google-footer .footer-bottom a {
    color: #70757a;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.2px;
}

.google-footer .footer-bottom a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   RESPONSIVE DESIGN - BERDASARKAN LEBAR SEARCH BOX (1100px)
   ========================================================================== */

/* Desktop: Lebar layar >= 1100px + padding header */
@media screen and (min-width: calc(var(--search-width) + 2 * var(--header-padding))) {

    .results-container,
    .no-results-container {
        width: var(--search-width);
        margin: 0 auto;
    }
}

/* Tablet & Mobile: Kurangi width saat layar sempit */
@media screen and (max-width: calc(var(--search-width) + 2 * var(--header-padding) - 1px)) {
    :root {
        --search-width: 800px;
    }

    .results-container,
    .no-results-container {
        width: var(--search-width);
        margin: 0 auto;
    }

    .header-container,
    .nav-container {
        max-width: calc(var(--search-width) + 2 * var(--header-padding));
    }

    .search-form-header {
        max-width: var(--search-width);
    }
}

@media screen and (max-width: 1080px) {
        .search-box {
        width: 860px;
    }
}

@media screen and (max-width: 960px) {
        .search-box {
        width: 720px;
    }
}

@media screen and (max-width: 690px) {
        .search-box {
        width: 480px;
    }
}

@media screen and (max-width: 480px) {
        .search-box {
        width: 380px;
    }
}

/* Tablet Portrait (≤ 768px) - Full width centered */
@media screen and (max-width: 768px) {
    :root {
        --search-width: 100%;
    }

    .results-container,
    .no-results-container {
        width: 100%;
        padding: 0 20px;
    }

    .header-container,
    .nav-container {
        max-width: 100%;
    }

    .search-form-header {
        max-width: 100%;
    }

    .google-header {
        padding: 8px 16px;
    }

    .search-box-header input {
        height: 40px;
        padding: 6px 80px 6px 16px;
        font-size: 14px;
        border-radius: 20px;
    }

    .search-nav {
        padding: 0 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-container {
        gap: 15px;
        padding: 10px 0;
        font-size: 12px;
    }

    .nav-link {
        font-size: 12px;
        padding-bottom: 8px;
    }

    .result-title-link {
        font-size: 18px;
    }

    .result-description {
        font-size: 13px;
        max-width: 100%;
    }

    .google-pagination {
        text-align: center;
    }
}

/* Mobile (≤ 480px) */
@media screen and (max-width: 480px) {
    :root {
        --search-width: 100%;
        --header-padding: 16px;
    }

    .main-content {
        padding: 10px;
        margin-top: -20px;
    }

    .logo img {
        height: 48px;
    }

    .search-box {
        padding: 0 4px;
    }

    #searchInput {
        font-size: 13px;
        padding: 10px 40px 10px 35px;
        height: 42px;
        border-radius: 18px;
    }

    .search-buttons {
        gap: 6px;
        margin-top: 16px;
    }

    .btn-search,
    .btn-lucky {
        max-width: 160px;
        padding: 8px 14px;
        font-size: 12px;
    }

    .results-main {
        padding: 10px 10px 0;
    }

    .results-container,
    .no-results-container {
        padding: 0 4px 20px;
    }

    .google-header {
        padding: 6px 12px;
    }

    .search-box-header input {
        height: 36px;
        font-size: 13px;
        padding: 4px 70px 4px 12px;
        border-radius: 18px;
    }

    .result-item {
        margin-bottom: 20px;
        padding: 2px 0;
    }

    .result-title-link {
        font-size: 16px;
        line-height: 1.4;
    }

    .result-description {
        font-size: 12px;
        line-height: 1.5;
    }

    .site-name {
        font-size: 12px;
    }

    .full-url {
        font-size: 10px;
    }

    .favicon {
        width: 18px;
        height: 18px;
    }

    .results-stats {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .google-pagination {
        margin: 20px 0 15px;
        text-align: center;
    }

    .pag-link,
    .pag-number {
        font-size: 12px;
        padding: 6px 10px;
    }

    /* Footer Mobile */
    .google-footer .footer-top {
        padding: 10px 16px;
        font-size: 12px;
        text-align: center;
    }

    .google-footer .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 10px 16px;
        gap: 15px;
    }

    .google-footer .footer-links-left,
    .google-footer .footer-links-right {
        justify-content: center;
        gap: 12px;
        width: 100%;
    }

    .google-footer .footer-bottom a {
        font-size: 11px;
    }

    /* No Results */
    .no-results-container {
        padding: 40px 16px;
        text-align: center;
    }

    .no-results-icon {
        font-size: 48px;
    }

    .no-results-title {
        font-size: 18px;
    }

    .no-results-subtitle {
        font-size: 14px;
    }

    .no-results-suggestions {
        padding: 15px 20px;
    }

    .example-tags {
        justify-content: center;
        gap: 8px;
    }

    .example-tag {
        font-size: 12px;
        padding: 6px 14px;
    }
}

/* ========== AMP VIEWER OVERLAY ========== */
.amp-viewer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: none;
    flex-direction: column;
    animation: ampFadeIn 0.3s ease;
}

@keyframes ampFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.amp-viewer-header {
    background: #ffffff;
    color: #000000;
    padding: 8px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    border-bottom: 1px solid #dadce0;
    height: 40px;
}

.amp-viewer-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 500;
    flex: 1;
}

.amp-url-display {
    font-size: 12px;
    color: #5f6368;
    font-weight: 400;
    max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.amp-close-btn {
    background: none;
    border: none;
    color: #5f6368;
    font-size: 20px;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.amp-close-btn:hover {
    background: #f1f3f4;
}

.amp-viewer-content {
    flex: 1;
    position: relative;
    background: white;
}

.amp-viewer-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: white;
}

/* AMP Viewer Mobile */
@media screen and (max-width: 768px) {
    .amp-viewer-header {
        padding: 6px 12px;
        height: 36px;
    }

    .amp-viewer-title {
        font-size: 11px;
        gap: 8px;
    }

    .amp-url-display {
        max-width: 120px;
        font-size: 10px;
    }

    .amp-close-btn {
        font-size: 16px;
        padding: 2px 8px;
    }
}

@media screen and (max-width: 480px) {
    .amp-viewer-header {
        padding: 4px 8px;
        height: 32px;
    }

    .amp-url-display {
        max-width: 80px;
        font-size: 9px;
    }

    .amp-close-btn {
        font-size: 14px;
        padding: 2px 6px;
    }
}

/* Dark mode untuk AMP Viewer */
@media (prefers-color-scheme: dark) {
    .amp-viewer-header {
        background: #202124;
        color: #e8eaed;
        border-bottom-color: #3c4043;
    }

    .amp-url-display {
        color: #9aa0a6;
    }

    .amp-close-btn {
        color: #e8eaed;
    }

    .amp-close-btn:hover {
        background: #3c4043;
    }

    .amp-viewer-content {
        background: #202124;
    }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo {
    animation: fadeIn 0.5s ease;
}

.search-box {
    animation: fadeIn 0.6s ease;
}

.search-buttons {
    animation: fadeIn 0.7s ease;
}

/* ========== FOCUS RING ========== */
#searchInput:focus-visible {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
}

.btn-search:focus-visible,
.btn-lucky:focus-visible,
.sign-in-btn:focus-visible {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
}

/* ========== SELECTION ========== */
::selection {
    background: #4285f4;
    color: white;
}

::-moz-selection {
    background: #4285f4;
    color: white;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

@media (prefers-color-scheme: dark) {
    ::-webkit-scrollbar-track {
        background: #303134;
    }

    ::-webkit-scrollbar-thumb {
        background: #5f6368;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #7a7f85;
    }
}