/* Menata Tabel Hasil agar Terlihat Premium */
.sf {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    border: none !important;
    margin-top: 20px;
}

.sf th {
    background-color: #f8f9fa !important;
    color: #6c757d !important;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    text-transform: uppercase !important;
    padding: 15px !important;
    border-bottom: 2px solid #f1f3f5 !important;
}

.sf td {
    padding: 15px !important;
    border-bottom: 1px solid #f1f3f5 !important;
    color: #343a40 !important;
}

.sf tr:last-child td { border-bottom: none; }

/* Wrapper Tabel dengan Shadow Halus */
.result-table-wrapper {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden !important;
}

/* Tombol Custom dari JS */
#app button {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

#app button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3);
}

/* Kunci Jawaban Minimalis */
.anskeylist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 !important;
    list-style: none !important;
}

.anskeylist li {
    background: #ffffff;
    border: 1px solid #e9ecef;
    padding: 8px 16px !important;
    border-radius: 12px;
    font-weight: bold;
    color: #495057;
    margin: 0 !important;
    float: none !important;
}

.sf-green { color: #2fb344 !important; }