/* 1. FIX SCROLL & GLOBAL SETUP */
html, body {
    height: auto !important; 
    overflow-y: auto !important;
    overflow-x: hidden !important;
    margin: 0;
    padding: 0;
}

body.swal2-shown {
    overflow-y: auto !important;
    padding-right: 0 !important;
}

/* 2. BACKGROUND IDENTIK BUKU SAKU (GRID + DOTS) */
/* BACKGROUND PERSIS SEPERTI GAMBAR */
/* BACKGROUND DOT OFFSET (STAGGERED) */
body {
    background-color: #ffffff !important;

    background-image:
        radial-gradient(circle, #d6bfa8 1.2px, transparent 1.2px),
        radial-gradient(circle, #d6bfa8 1.2px, transparent 1.2px);

    background-size: 22px 22px;
    background-position: 0 0, 11px 11px;

    background-attachment: fixed;
}



/* 3. CONTAINER GLASSMORPHISM UNTUK FORM */
.glass-input {
    background: rgba(255, 255, 255, 0.05) !important; /* Lebih transparan agar elegan */
    backdrop-filter: blur(10px); /* Efek blur kaca lebih kuat */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: white !important;
    border-radius: 12px !important;
    padding: 12px 15px !important;
    transition: all 0.3s ease;
}

.glass-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.glass-input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: #0dcaf0 !important;
    box-shadow: 0 0 15px rgba(13, 202, 240, 0.2) !important;
    outline: none;
}

/* Memperbaiki dropdown agar teks terlihat saat diklik */
.glass-input option {
    background: #0e3660; 
    color: white;
}

/* 4. JUDUL SEKSI FORM DENGAN AKSEN GARIS */
.form-section-title {
    color: #0dcaf0 !important;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

/* Menambahkan garis horizontal tipis setelah teks judul */
.form-section-title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-left: 15px;
}

/* 5. TOMBOL SUBMIT */
.btn-submit-laporan {
    background: linear-gradient(90deg, #0dcaf0, #007bff);
    color: white !important;
    border: none;
    border-radius: 12px;
    padding: 12px 30px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-submit-laporan:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.5);
    filter: brightness(1.1);
}

/* 6. DIVIDER & WRAPPER */
.dashed-divider {
    border-top: 1px dashed rgba(255, 255, 255, 0.15);
    margin: 30px 0;
}

.wrapper,
.main-content {
    min-height: 100vh;
    overflow: visible !important;
    display: block;
}

/* Efek Card agar lebih Pop-Out di atas background bintik */
.card {
    border: none !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}