/* section laporan dari admin/laporan */
@media print {
    body * {
        visibility: hidden;
    }

    #print-area,
    #print-area * {
        visibility: visible;
    }

    #print-area {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}
/* End Laporan */


body,
html {
    height: 100%;
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
}

.bg-image {
    background-image: url('../img/image1.jpg');
    /* Ganti sesuai gambar yang ada */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
    position: relative;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.content-area {
    position: relative;
    z-index: 2;
}

.content-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(5px);
}

.section-title {
    font-weight: 700;
    color: #333;
    font-size: 28px;
}

.nav-tabs .nav-link.active {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.nav-tabs .nav-link {
    color: #007bff;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.nav-tabs .nav-link:hover {
    background-color: #e7f1ff;
}

ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 8px;
}

.text-justify {
    text-align: justify;
}

.btn-outline-primary {
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: white;
}

.img-fluid.shadow {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .content-box {
        padding: 20px;
    }

    .section-title {
        font-size: 22px;
    }
}