/* Countdown Timer */
#timer {
    gap: 15px;
}

.timer-box {
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 80px;
}

.timer-box span {
    font-size: 2rem;
    font-weight: bold;
    color: #007bff;
    display: block;
}

.timer-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

/* Card Styling */
.card {
    border: none;
    border-radius: 10px;
}

.card-header {
    border-radius: 10px 10px 0 0 !important;
}

/* Form Styling */
.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
}

.form-control:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Button Styling */
.btn {
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 600;
}

/* Result Styling */
#hasilPencarian .alert {
    border-radius: 8px;
}

/* Print Styles */
@media print {
    body * {
        visibility: hidden;
    }
    #suratKeterangan, #suratKeterangan * {
        visibility: visible;
    }
    #suratKeterangan {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
    .no-print {
        display: none !important;
    }
}

/* Surat Keterangan Styling */
.surat-keterangan {
    font-family: 'Times New Roman', Times, serif;
    line-height: 1.6;
    border: 2px solid #000;
    padding: 30px;
    min-height: 29.7cm;
}

.kop-surat {
    border-bottom: 2px solid #000;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.logo-sekolah {
    max-height: 100px;
}

.judul-surat {
    text-align: center;
    margin: 30px 0;
    font-weight: bold;
}

.isi-surat {
    margin: 20px 0;
    text-align: justify;
}

.ttd-area {
    margin-top: 100px;
    text-align: center;
}

.ttd-nama {
    font-weight: bold;
    text-decoration: underline;
    margin-top: 80px;
}

.ttd-nip {
    font-size: 0.9em;
}