.search-container {
    width: 100%;
    max-width: 500px;
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.search-container .form-control {
    padding: 25px;
    border: none;
    border-bottom: 2px solid #007bff;
    border-radius: 0;
    box-shadow: none;
    transition: border-color 0.3s ease;
}
.search-container .form-control:focus {
    border-color: #0056b3;
}
.search-container .btn-search {
    background-color: #007bff;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.search-container .btn-search:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

/* Home Pilih */

.section-divider {
    border-top: 1px solid rgba(0, 0, 0, .08);
    margin: 2rem 0 1.5rem;
}

.section-level-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6c757d;
    margin-bottom: .5rem;
}

.card-pemilihan {
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: .75rem;
    transition: box-shadow .15s ease;
}

.card-pemilihan:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
}

.badge-sema {
    background-color: #dbeafe;
    color: #1d4ed8;
}

.badge-dema {
    background-color: #dcfce7;
    color: #15803d;
}

.badge-hmps {
    background-color: #ede9fe;
    color: #6d28d9;
}

.badge-f {
    background-color: #fef3c7;
    color: #92400e;
}

.badge-jenis {
    font-size: 11px;
    font-weight: 600;
    padding: .25rem .6rem;
    border-radius: 20px;
}

.btn-vote {
    font-size: .8125rem;
    font-weight: 500;
    padding: .45rem 1.1rem;
    border-radius: .5rem;
    white-space: nowrap;
}

.empty-section {
    border: 1px dashed #dee2e6;
    border-radius: .75rem;
    padding: 2rem;
    text-align: center;
    color: #adb5bd;
    font-size: .875rem;
}

.pemilihan-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .card-body-row {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-vote {
        width: 100%;
        justify-content: center;
    }
}

/* End Home Pilih */