/* Button link */

.print-button-container {
    margin: 20px 0;
}


/* Tombol utama */

.btn-print {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 10px;
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}


/* Hover efek */

.btn-print:hover {
    background: linear-gradient(135deg, #2575fc, #6a11cb);
    transform: translateY(-3px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.25);
    color: #fff;
    text-decoration: none;
}


/* Icon sedikit animasi */

.btn-print i {
    transition: transform 0.3s ease;
}

.btn-print:hover i {
    transform: translateX(-4px);
}


/* End. Button link */

.btn_profile {
    display: flex;
    flex-direction: column;
    /* Susun vertikal */
    align-items: center;
    /* Tengah */
    text-decoration: none;
    /* Hilangkan garis bawah */
    color: inherit;
    /* Warna ikut default */
}

.img_profile img {
    width: 50px;
    /* bisa disesuaikan */
    height: 50px;
    /* bisa disesuaikan */
}

.text_profile {
    margin-top: 0px;
    font-size: 12px;
    color: gray;
}

.gray-img {
    filter: grayscale(100%);
}


/* css for daftar */


/* Sticky & Shrink Header */

.main_haeder {
    position: sticky;
    top: 0;
    z-index: 999;
    background: linear-gradient(135deg, #0d6efd 0%, #0abf53 100%);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .25s ease-in-out;
}


/* Header ketika shrink */

.main_haeder.shrink {
    padding: 8px 14px;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}


/* Title besar */

.page_name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: .5px;
    transition: .25s ease-in-out;
}


/* Title shrink - mengecil */

.main_haeder.shrink .page_name {
    font-size: 16px;
}


/* Mobile Optimization */

@media (max-width: 576px) {
    .main_haeder {
        padding: 12px 14px;
    }
    /* Elemen kanan & kiri rapat */
    .em_side_right a,
    .em_side_right button {
        padding: 4px 8px;
        font-size: 12px;
    }
    table td,
    table th {
        font-size: 12px !important;
        padding: 6px !important;
    }
    /* Tombol Back lebih kecil */
    .btn__back {
        width: 32px;
        height: 32px;
    }
    /* Hapus jarak terlalu jauh dari logo */
    .em_titleSign {
        margin-bottom: 18px;
    }
    /* Center form button */
    .btn-login {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    /* Card lebih rapat dengan logo */
    .em__body {
        margin-top: 10px !important;
    }
}

.img-pkb {
    width: 100%;
    max-width: 70px;
    border-radius: 5%;
    object-fit: contain;
    height: 70px;
}


/* css untuk head */

.pkb-setting-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 15px 18px;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    animation: fadeScale .3s ease;
}

@keyframes fadeScale {
    from {
        opacity: 0;
        transform: scale(.97);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.pkb-header {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 10px;
}

.pkb-header i {
    color: #17a2b8;
    font-size: 15px;
}

.pkb-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pkb-info-list li {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    padding: 2px 0;
    border-bottom: 1px dashed #e2e2e2;
}

.pkb-info-list li:last-child {
    border-bottom: none;
}

.pkb-info-list span {
    color: #555;
}

.pkb-info-list b {
    color: #212529;
    font-weight: 700;
}


/* CSS untuk periode */

.periode-box {
    background: linear-gradient(45deg, #007bff, #00c4ff);
    color: #fff;
    display: inline-block;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 18px;
    font-weight: 500;
    margin-top: 12px;
    cursor: pointer;
    transition: 0.25s ease-in-out;
}

.periode-box i {
    margin-right: 6px;
    font-size: 13px;
}

.periode-box strong {
    font-weight: 700;
    color: #fff;
}

.periode-box .divider {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 6px;
}

.periode-box:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.20);
}

.periode-wrapper {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}