/* Mengatur font dasar */
body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mengatur font untuk heading utama */
.font-display {
    font-family: 'Playfair Display', serif;
}

/* Animasi untuk hasil yang muncul */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Styling kustom untuk elemen <select> */
.custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 0.875rem 1.25rem; /* 14px 20px */
    background-color: #f8fafc; /* gray-50 */
    border: 1px solid #e5e7eb; /* gray-200 */
    border-radius: 0.75rem; /* rounded-xl */
    font-size: 0.875rem; /* text-sm */
    color: #374151; /* gray-700 */
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.25em 1.25em;
    transition: all 0.2s ease-in-out;
}
.custom-select:hover {
    border-color: #d1d5db; /* gray-300 */
    background-color: #f3f4f6; /* gray-100 */
}
.custom-select:focus {
    outline: none;
    border-color: #4f46e5; /* indigo-600 */
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.2);
}

/* Styling kustom untuk elemen <details> (Accordion) */
.accordion {
    background-color: #ffffff;
    border: 1px solid #e5e7eb; /* gray-200 */
    border-radius: 0.75rem; /* rounded-xl */
    transition: all 0.3s ease;
}
.accordion[open] {
    border-color: #d1d5db; /* gray-300 */
}
.accordion-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: #374151; /* gray-700 */
    cursor: pointer;
    list-style: none; /* Menghilangkan panah default */
}
.accordion-summary::-webkit-details-marker {
    display: none;
}
.accordion-summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: #9ca3af; /* gray-400 */
    transition: transform 0.3s ease;
}
.accordion[open] > .accordion-summary::after {
    transform: rotate(45deg);
}
.accordion-content {
    padding: 0 1.25rem 1.25rem 1.25rem;
    color: #6b7280; /* gray-500 */
    font-size: 0.875rem;
}
.accordion-content p {
    margin-bottom: 0.5rem;
}
.accordion-content p:last-child {
    margin-bottom: 0;
}
 #install-banner {
        display: none; /* Sembunyi secara default */
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background-color: #2c3e50; /* Warna gelap agar kontras */
        color: white;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        z-index: 1000;
        padding: 1rem;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
    }

    #install-banner.show {
        display: block;
        transform: translateY(0);
    }

    .install-banner-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1100px;
        margin: 0 auto;
    }

    .install-banner-text p {
        margin: 0;
        font-size: 0.9rem;
    }

    .install-banner-buttons button {
        border: 1px solid white;
        background-color: transparent;
        color: white;
        padding: 8px 16px;
        border-radius: 5px;
        font-weight: 500;
        cursor: pointer;
        margin-left: 10px;
        white-space: nowrap;
    }

    .install-banner-buttons .install-button {
        background-color: #3498db; /* Warna tombol utama */
        border-color: #3498db;
    }