:root {
    --primary: #0076a3;
    --secondary: #8bc34a;
    --bg: #f0f4f8;
    --card: #ffffff;
    --text: #333333;
    --danger: #dc3545;
    --hover-cari: #1565c0;
    --hover-pilih: #689f38;
    --hover-simpan: #005a7d;
}

/* ========================================= */
/* 1. GLOBAL RESET & BASE STYLES             */
/* ========================================= */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    margin: 0; padding: 20px;
    color: var(--text);
}

.container {
    max-width: 900px;
    background: var(--card);
    margin: 0 auto;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    overflow: hidden;
}

/* ========================================= */
/* 2. HEADER & PROFIL                        */
/* ========================================= */
.header {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 30px; position: relative; text-align: left;
    box-shadow: 0 4px 15px rgba(0, 118, 163, 0.2);
    display: block; 
}

.profile-card {
    display: flex; align-items: center; gap: 25px; position: relative; z-index: 2;
    background: rgba(255, 255, 255, 0.1); padding: 20px; border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(5px);
    max-width: 600px;
}

.pc-image { flex-shrink: 0; }
.img-pegawai {
    width: 85px; height: 85px; border-radius: 50%; object-fit: cover;
    border: 3px solid rgba(255,255,255, 0.8); box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    background: #fff; display: block;
}
.pc-info { color: white; display: flex; flex-direction: column; justify-content: center; }
.pc-greet { font-size: 0.8em; font-weight: 500; opacity: 0.9; margin-bottom: 3px; text-transform: uppercase; letter-spacing: 1px; }
.pc-name { font-size: 1.5em; font-weight: 700; margin: 0 0 10px 0; text-shadow: 0 2px 4px rgba(0,0,0,0.1); line-height: 1.1; }
.pc-detail { display: flex; gap: 8px; flex-wrap: wrap; }
.badge-nik, .badge-job {
    background: rgba(0, 0, 0, 0.15); padding: 5px 12px; border-radius: 50px;
    font-size: 0.75em; font-weight: 500; border: 1px solid rgba(255,255,255,0.1); 
    display: inline-flex; align-items: center; gap: 6px; color: #fff;
}
.badge-job { background: rgba(255, 255, 255, 0.9); color: var(--primary); font-weight: 700; }

.btn-logout {
    background: rgba(255, 255, 255, 0.15); color: white; border: 1px solid rgba(255, 255, 255, 0.4);
    text-decoration: none; padding: 8px 20px; border-radius: 50px;
    font-size: 0.85em; font-weight: 600; display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; transition: all 0.3s ease; z-index: 10;
}
.btn-logout:hover { background: #d32f2f; border-color: #d32f2f; box-shadow: 0 4px 15px rgba(0,0,0,0.2); }

/* ========================================= */
/* 3. KONTEN & PENCARIAN                     */
/* ========================================= */
.content { padding: 30px; }
.search-box-container {
    background: #eef7fb; padding: 25px; border-radius: 15px; margin-bottom: 20px;
    border: 1px solid #d1e7f0; text-align: center; transition: transform 0.3s ease;
}
.search-box-container:hover { box-shadow: 0 5px 15px rgba(0, 118, 163, 0.1); }
.search-box-container label { font-weight: 600; color: #555; font-size: 1em; }
.search-input-group { display: flex; justify-content: center; align-items: center; gap: 10px; margin-top: 10px; }
#search_input, .btn-cari, .btn-belum { height: 50px; margin: 0; display: inline-flex; align-items: center; }
#search_input { padding: 0 20px; border-radius: 50px; border: 1px solid #ccc; font-size: 1.1em; text-align: center; width: 250px; flex: none; background: white; box-shadow: inset 0 2px 5px rgba(0,0,0,0.05); }
#search_input:focus { border-color: var(--primary); box-shadow: 0 0 8px rgba(0, 118, 163, 0.3); transform: scale(1.02); }
.btn-cari { background: #2196F3; color: white; padding: 0 30px; border-radius: 50px; font-size: 1em; border: none; font-weight: 600; box-shadow: 0 4px 6px rgba(33, 150, 243, 0.3); transition: 0.3s; }
.btn-cari:hover { background: var(--hover-cari); transform: scale(1.05); }
.btn-belum { background: #ff9800; color: white; padding: 0 25px; border-radius: 50px; font-size: 0.95em; border: none; font-weight: 600; cursor: pointer; gap: 8px; transition: 0.3s; box-shadow: 0 4px 6px rgba(255, 152, 0, 0.2); }
.btn-belum:hover { background: #f57c00; transform: translateY(-2px); box-shadow: 0 6px 12px rgba(255, 152, 0, 0.3); }

/* Filter Styles */
.filter-container { display: flex; gap: 15px; background: #fff; padding: 20px; border-radius: 12px; border: 1px solid #e0e0e0; align-items: flex-end; margin-bottom: 20px; }
.filter-group { display: flex; flex-direction: column; gap: 8px; } .filter-group label { font-size: 0.9em; font-weight: 600; color: #555; margin: 0; }
#filter_wilayah, #filter_keyword, .btn-filter { height: 48px !important; border-radius: 8px; font-size: 0.95em; margin: 0; }
#filter_wilayah, #filter_keyword { padding: 0 15px; border: 1px solid #ccc; background: #fff; width: 100%; }
.btn-filter { background: linear-gradient(135deg, #00c853, #b2ff59); color: #004d40; border: none; padding: 0 25px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ========================================= */
/* 4. FORMULIR & INPUT                       */
/* ========================================= */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: end; }
.section-title { grid-column: 1 / -1; border-bottom: 2px solid #eee; padding-bottom: 10px; margin-bottom: 15px; color: var(--primary); font-weight: 600; display: flex; align-items: center; gap: 10px; }
.form-group { margin-bottom: 20px; width: 100%; } 
.form-group label { margin-bottom: 8px; font-weight: 600; font-size: 0.9em; display: flex; align-items: center; }
select, input[type="text"], input[type="file"], input[type="password"] { width: 100%; max-width: 100%; height: 45px !important; padding: 0 15px; border: 1px solid #ddd; border-radius: 8px; background-color: #fff; }
.readonly-input { background-color: #f8f9fa !important; color: #666; cursor: not-allowed; }

/* ========================================= */
/* 5. UPLOAD & KAMERA                        */
/* ========================================= */
.custom-file-container { display: flex; align-items: center; gap: 10px; margin-top: 5px; background: #f8faff; padding: 12px; border: 2px dashed #b3e5fc; border-radius: 10px; transition: 0.3s; flex-wrap: wrap; }
.custom-file-container:hover { border-color: var(--primary); background: #e1f5fe; }
.hidden-file-input { display: none; }
.btn-upload-foto, .btn-kamera { height: 45px !important; line-height: normal; padding: 0 25px; margin: 0; display: inline-flex; align-items: center; justify-content: center; vertical-align: middle; gap: 10px; border-radius: 50px; font-size: 0.95em; font-weight: 700; cursor: pointer; white-space: nowrap; border: 2px solid #fff; transition: all 0.3s ease; color: #ffffff !important; -webkit-appearance: none; appearance: none; text-decoration: none; }
.btn-upload-foto { background: linear-gradient(135deg, #d81b60, #880e4f); box-shadow: 0 4px 6px rgba(136, 14, 79, 0.3); }
.btn-upload-foto:hover { background: linear-gradient(135deg, #ad1457, #880e4f); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(136, 14, 79, 0.5); }
.btn-kamera { background: linear-gradient(135deg, #ff9800, #f57c00); box-shadow: 0 4px 6px rgba(245, 124, 0, 0.3); }
.btn-kamera:hover { background: linear-gradient(135deg, #fb8c00, #ef6c00); transform: translateY(-2px); box-shadow: 0 6px 15px rgba(245, 124, 0, 0.5); }
.file-name-text { font-size: 0.9em; color: #666; font-style: italic; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 200px; line-height: 45px; }

@media (max-width: 768px) {
    .btn-upload-foto, .btn-kamera { width: 100%; }
    .file-name-text { line-height: normal; margin-top: 5px; }
}

/* Action Buttons & Icons */
.btn-submit, .btn-edit-data { border-radius: 8px; font-size: 1em; width: 100%; margin-top: 20px; padding: 12px; border: none; font-weight: 600; cursor: pointer; display: flex; justify-content: center; align-items: center; gap: 8px; }
.btn-submit { background: var(--primary); color: white; }
.btn-edit-data { background: #ffc107; color: #333; }
.btn-disabled { background: #e0e0e0 !important; color: #757575 !important; cursor: not-allowed; }
.icon-blue { color: #2196F3; } .icon-green { color: #4CAF50; } .icon-red { color: #F44336; } .icon-orange { color: #FF9800; } .icon-purple { color: #9C27B0; } .icon-teal { color: #009688; } .icon-brown { color: #795548; } .icon-grey { color: #607D8B; } .icon-navy { color: #3F51B5; } .icon-pink { color: #E91E63; }
.form-group label i { margin-right: 8px; width: 25px; text-align: center; }

/* ========================================= */
/* 6. MODALS & RESULT CARDS                  */
/* ========================================= */
.modal-overlay { display: none; position: fixed; z-index: 1000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0,0,0,0.6); backdrop-filter: blur(4px); align-items: flex-start; justify-content: center; overflow-y: auto; padding: 40px 0; }
.modal-content { background-color: #fefefe; margin: 0 auto; border-radius: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.25); width: 90%; max-width: 600px; position: relative; animation: popupBounce 0.5s; }
@keyframes popupBounce { 0% { transform: scale(0.5); opacity: 0; } 100% { transform: scale(1); opacity: 1; } }
.large-modal { max-width: 900px; margin-bottom: 50px; }
.modal-header { padding: 15px 25px; background: #fff; border-bottom: 1px solid #eee; border-radius: 15px 15px 0 0; display: flex; justify-content: space-between; align-items: center; }
/* TOMBOL CLOSE (X) - RED SOLID STYLE */
    .close {
        color: white; /* Ikon Putih */
        background-color: #dc3545; /* Latar Merah Solid */
        font-size: 20px; 
        font-weight: bold;
        cursor: pointer;
        width: 35px; /* Ukuran sedikit diperkecil agar elegan */
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%; /* Bulat Sempurna */
        border: 2px solid white; /* List putih tipis agar kontras */
        box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3); /* Bayangan merah */
        transition: all 0.3s ease;
        opacity: 1;
    }

    .close:hover {
        background-color: #b02a37; /* Merah lebih gelap saat disentuh */
        transform: rotate(90deg) scale(1.1); /* Efek putar & membesar */
        box-shadow: 0 6px 15px rgba(220, 53, 69, 0.5); /* Bayangan makin kuat */
        border-color: #ffcdd2;
    }
	
.modal-body { padding: 25px; }

/* Icon Meriah & Tombol Kapsul */
.icon-celebration { font-size: 5rem; margin-bottom: 15px; animation: bounceIn 1s; color: #4CAF50; }
@keyframes bounceIn { 0% { transform: scale(0.3); opacity: 0; } 50% { transform: scale(1.05); opacity: 1; } 70% { transform: scale(0.9); } 100% { transform: scale(1); } }
.btn-capsule-blue, .btn-capsule-red { border-radius: 50px; padding: 10px 25px; font-weight: 600; border: none; cursor: pointer; font-size: 1em; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s ease; color: white; }
.btn-capsule-blue { background: #2196F3; box-shadow: 0 4px 6px rgba(33, 150, 243, 0.3); }
.btn-capsule-blue:hover { background: #1976D2; transform: translateY(-2px); }
.btn-capsule-red { background: #dc3545; box-shadow: 0 4px 6px rgba(220, 53, 69, 0.3); }
.btn-capsule-red:hover { background: #b02a37; transform: translateY(-2px); }

/* Result Box */
.result-box { background: #eef7fb; border: 2px dashed var(--primary); padding: 20px; border-radius: 12px; text-align: center; grid-column: 1 / -1; margin-top: 10px; }
.result-box #display_golongan { font-size: 2em; font-weight: 800; color: var(--secondary); margin: 5px 0; }
.card-result { display: flex; gap: 30px; background: white; }
.card-left { flex: 1; position: relative; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.2); min-height: 300px; background: #eee; }
.card-left img { width: 100%; height: 100%; object-fit: cover; display: block; }
.res-badge { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(0, 118, 163, 0.9); color: white; text-align: center; padding: 15px; font-size: 2em; font-weight: bold; backdrop-filter: blur(5px); }
.card-right { flex: 1.5; display: flex; flex-direction: column; justify-content: center; }
.info-grid { display: grid; grid-template-columns: 100px 10px 1fr; gap: 8px 10px; margin-bottom: 20px; align-items: start; }
.ig-label { font-weight: 600; color: #555; font-size: 0.95em; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.ig-sep { font-weight: 600; color: #888; text-align: center; }
.ig-value { font-weight: 700; color: var(--primary); font-size: 1em; word-wrap: break-word; }
#res_nama { color: #333; text-transform: uppercase; }

/* Score List */
.score-list { background: #f9f9f9; padding: 15px; border-radius: 10px; margin-bottom: 15px; border: 1px solid #eee; }
.score-item { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; font-size: 0.9em; border-bottom: 1px dashed #ddd; padding-bottom: 8px; }
.score-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.score-label { font-weight: 600; color: #555; width: 100px; flex-shrink: 0; display: flex; align-items: center; gap: 8px; }
.score-desc { color: #333; font-weight: 600; font-size: 0.95em; flex-grow: 1; text-align: left; padding-left: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 250px; }
.score-val { color: var(--primary); font-weight: bold; font-size: 1.1em; width: 30px; text-align: right; }
.total-box { background: var(--secondary); color: white; padding: 10px; border-radius: 8px; text-align: center; font-weight: 600; font-size: 1.1em; margin-top: auto; }
.footer { text-align: center; padding-top: 20px; margin-top: 30px; border-top: 1px solid #eee; color: #888; font-size: 0.85em; font-weight: 500; }

/* Table Styles */
.table-pilih { width: 100%; border-collapse: collapse; margin-top: 10px; }
.table-pilih th { background: var(--primary); color: white; padding: 12px; text-align: left; }
.table-pilih td { border: 1px solid #eee; padding: 12px; vertical-align: top; }
.btn-pilih { background: var(--secondary); color: white; padding: 8px 15px; border-radius: 8px; font-size: 0.9em; border: none; cursor: pointer; }
.btn-pilih:hover { background: var(--hover-pilih); transform: scale(1.1); }

/* Login Styles */
.login-wrapper { display: flex; justify-content: center; align-items: center; min-height: 100vh; background: linear-gradient(135deg, var(--primary), var(--secondary)); position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 9999; }
.login-card { background: white; padding: 40px; border-radius: 15px; box-shadow: 0 15px 35px rgba(0,0,0,0.2); width: 100%; max-width: 400px; text-align: center; animation: popupBounce 0.5s; }
.login-card h2 { color: var(--primary); margin: 0 0 5px 0; }
.login-card p { color: #888; margin-bottom: 25px; font-size: 0.9em; }
.input-wrapper { position: relative; width: 100%; margin-bottom: 15px; }
.input-wrapper i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: var(--primary); font-size: 1.2em; z-index: 10; pointer-events: none; }
.input-wrapper input.inp-login { padding-left: 45px !important; width: 100%; height: 50px !important; border-radius: 50px; border: 1px solid #ddd; background: #f9f9f9; transition: 0.3s; margin-bottom: 0; }
.input-wrapper input.inp-login:focus { border-color: var(--primary); background: #fff; outline: none; box-shadow: 0 0 0 3px rgba(0, 118, 163, 0.1); }
.btn-login { width: 100%; padding: 15px; background: var(--primary); color: white; font-weight: bold; border: none; border-radius: 50px; cursor: pointer; font-size: 1.1em; transition: all 0.3s ease; box-shadow: 0 4px 6px rgba(0,0,0,0.1); margin-top: 10px; }
.btn-login:hover { background: var(--hover-simpan); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 118, 163, 0.3); }
.alert-error { background: #ffebee; color: #c62828; padding: 10px; border-radius: 6px; margin-bottom: 20px; font-size: 0.9em; border: 1px solid #ffcdd2; }

/* ========================================= */
/* INFO INPUT CUSTOM (Mobile 3 Baris, Desktop Rapi) */
/* ========================================= */
.info-input-wrapper { margin-top: 15px; font-size: 0.9em; color: #666; line-height: 1.6; }
.info-val { font-weight: 600; color: var(--primary); }
.info-time { margin-left: 8px; font-weight: 600; color: var(--primary); }

@media (max-width: 768px) {
    .info-input-wrapper { display: flex; flex-direction: column; align-items: center; gap: 4px; background: #fdfdfd; padding: 10px; border-radius: 8px; border: 1px dashed #ddd; }
}
@media (min-width: 769px) {
    .info-input-wrapper { text-align: center; margin-top: 20px; }
    .info-block { display: block; margin-bottom: 5px; }

    /* TAMBAHAN: Kecilkan jarak tombol khusus di Laptop */
    #action_buttons_container {
        margin-top: 5px !important; /* Aslinya 20px, kita paksa jadi 5px */
    }
}

/* ========================================= */
/* ANIMASI TOMBOL HAPUS & WARNING */
/* ========================================= */
.btn-hapus-animasi {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(220, 20, 60, 0.3);
    border: 2px solid transparent;
}
.btn-hapus-animasi:hover {
    background-color: #d50000 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 7px 14px rgba(220, 20, 60, 0.5);
    border: 2px solid #ff8a80;
}

/* TAMBAHAN: Animasi Tombol Edit (Kuning) */
.btn-edit-animasi {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 6px rgba(255, 193, 7, 0.3); /* Bayangan kuning */
    border: 2px solid transparent;
}

.btn-edit-animasi:hover {
    background-color: #ffca2c !important; /* Kuning sedikit lebih gelap */
    transform: translateY(-3px) scale(1.02); /* Efek naik & membesar */
    box-shadow: 0 7px 14px rgba(255, 193, 7, 0.5);
    border: 2px solid #ffe082; /* Border kuning muda */
}

@keyframes pulse-red {
    0% { transform: scale(1); text-shadow: 0 0 0 rgba(220, 53, 69, 0.7); }
    70% { transform: scale(1.1); text-shadow: 0 0 20px rgba(220, 53, 69, 0); }
    100% { transform: scale(1); text-shadow: 0 0 0 rgba(220, 53, 69, 0); }
}

/* Media Queries Mobile */
@media (min-width: 769px) {
    .btn-logout { position: absolute; top: 30px; right: 30px; margin: 0; font-size: 0.85em; padding: 8px 20px; width: auto; }
    .search-box-container { display: flex; align-items: center; justify-content: center; gap: 20px; }
    .search-box-container label { margin-bottom: 0; white-space: nowrap; font-size: 1.1em; }
    .search-input-group { margin-top: 0; flex-grow: 0; }
    #modalList .modal-content { max-width: 1000px; }
    .table-pilih th:nth-child(1), .table-pilih td:nth-child(1) { width: 15%; }
    .table-pilih th:nth-child(2), .table-pilih td:nth-child(2) { width: 20%; }
    .table-pilih th:nth-child(3), .table-pilih td:nth-child(3) { width: 55%; }
    .table-pilih th:nth-child(4), .table-pilih td:nth-child(4) { width: 10%; text-align: center; }
}

@media (max-width: 768px) {
    .header { padding: 20px; display: flex; flex-direction: column; align-items: center; }
    .profile-card { flex-direction: column; gap: 15px; text-align: center; background: transparent; border: none; backdrop-filter: none; padding: 0; width: 100%; }
    .img-pegawai { width: 80px; height: 80px; margin: 0 auto; border-width: 3px; }
    .pc-info { align-items: center; }
    .pc-name { font-size: 1.4em; }
    .pc-detail { justify-content: center; }
    .btn-logout { position: static; margin-top: 15px; width: auto; display: inline-flex; padding: 8px 25px; justify-content: center; background: rgba(255, 255, 255, 0.2); }
    .form-grid { grid-template-columns: 1fr; }
    .custom-file-container { flex-direction: column; align-items: stretch; }
    .btn-upload-foto, .btn-kamera { justify-content: center; width: 100%; }
    .file-name-text { text-align: center; line-height: normal; margin-top: 10px; display: block; width: 100%; max-width: 80vw; margin-left: auto; margin-right: auto; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .search-input-group { flex-direction: column; gap: 15px; }
    #search_input { width: 100%; height: 45px; font-size: 0.9em; padding: 0 15px; text-align: center; margin-bottom: 0; }
    .btn-cari, .btn-belum { width: 100%; height: 45px; display: flex !important; justify-content: center !important; align-items: center !important; gap: 10px; margin: 0; padding: 0; }
    .btn-cari i, .btn-belum i { margin: 0 !important; }
    .filter-container { flex-direction: column; align-items: stretch; gap: 10px; }
    .btn-filter { justify-content: center; width: 100%; margin-top: 5px; }
    .card-result { flex-direction: column; }
    .info-grid { grid-template-columns: 90px 10px 1fr; font-size: 0.9em; gap: 5px 5px; align-items: center; }
    .score-item { flex-direction: row; flex-wrap: wrap; align-items: flex-start; gap: 0; border-bottom: 1px dashed #eee; padding-bottom: 10px; margin-bottom: 10px; }
    .score-label { width: 100%; margin-bottom: 5px; color: var(--primary); }
    .score-desc { flex: 1; white-space: normal !important; padding-left: 0; font-size: 1em; line-height: 1.4; overflow: visible !important; text-overflow: clip !important; max-width: none; }
    .score-val { width: auto; margin-left: 10px; align-self: flex-start; background: #f0f0f0; padding: 2px 8px; border-radius: 4px; margin-top: 0; white-space: nowrap; }
    .table-pilih thead { display: none; }
    .table-pilih tr { display: block; margin-bottom: 15px; background: #fff; border: 1px solid #ddd; border-radius: 10px; box-shadow: 0 3px 6px rgba(0,0,0,0.05); padding: 15px; }
    .table-pilih td { display: flex; align-items: flex-start; justify-content: flex-start; text-align: left; padding: 6px 0; border: none; border-bottom: 1px dashed #eee; font-size: 0.95em; color: #333; line-height: 1.4; }
    .table-pilih td::before { content: attr(data-label); font-weight: 700; color: var(--primary); display: inline-block; min-width: 70px; max-width: 70px; margin-right: 10px; flex-shrink: 0; }
    .table-pilih td { word-break: break-word; }
    .table-pilih td:last-child { border-bottom: none; padding-top: 15px; display: block; }
    .table-pilih td[data-label=""]::before { display: none; }
    .btn-pilih { width: 100%; padding: 12px; font-size: 1em; }
}
