/* Atur tampilan body */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1A1A1B;
    color: white;
    text-align: center;
    margin: 0;
    padding: 20px;
}

/* Container utama */
#link-list {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

/* Judul */
h1 {
    font-size: 24px;
    margin-bottom: 20px;
}

/* Search Box */
#search-box {
    width: 100%;
    max-width: 600px;
    height: 50px; /* Sama dengan tombol grup */
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 20px;
    border-radius: 8px;
    border: none;
    outline: none;
    background-color: #333;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Tombol grup (HO, Sidoarjo, dll.) */
.group-button {
    width: 100%;
    max-width: 600px;
    height: 50px;
    font-size: 16px;
    font-weight: 600; /* Poppins Semi Bold */
    background-color: #444;
    color: #FECE0A; /* Warna font tombol group */
    border: none;
    border-radius: 8px;
    margin: 10px 0;
    cursor: pointer;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
}

.group-button:hover {
    background-color: #666;
}

/* Daftar outlet */
.outlet-list {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: none;
}

/* Tombol outlet */
.button {
    width: 100%;
    max-width: 600px;
    height: 50px;
    font-size: 14px; /* Poppins Regular */
    font-weight: 400;
    background-color: #FECE0A;
    color: black;
    text-decoration: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 5px 0;
    transition: background 0.3s;
}

.button:hover {
    background-color: #e0b709;
}

/* Tombol outlet yang tidak bisa diklik */
.button.disabled {
    background-color: #ccc !important;
    color: #666 !important;
    pointer-events: none;
    opacity: 0.5;
}
