/* ===== Filter Box ===== */
.laporanKondisi-filterBox {
    background: #ffffff;
    padding: 20px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.laporanKondisi-filterBox label {
    color: #495057;
    font-size: 0.95rem;
}

.laporanKondisi-filterBox .form-select {
    border-radius: 10px;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease-in-out;
}

.laporanKondisi-filterBox .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.15);
}

/* ===== Table Wrapper ===== */
.laporanKondisi-tableWrapper {
    margin-top: 10px;
}

.laporanKondisi-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
}

/* ===== Card User ===== */
.laporanKondisi-tableWrapper .card {
    border-radius: 14px;
    border: none;
    overflow: hidden;
}

.laporanKondisi-tableWrapper .card-header {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    padding: 16px 20px;
}

.laporanKondisi-tableWrapper .card-header h5 {
    font-weight: 600;
}

.laporanKondisi-tableWrapper .card-header small {
    opacity: 0.85;
}

/* ===== Table ===== */
.table {
    margin-bottom: 0;
}

.table thead th {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #495057;
    vertical-align: middle;
}

.table tbody td {
    font-size: 0.9rem;
    vertical-align: middle;
}

.table tbody tr:hover {
    background-color: #f1f5ff;
}

/* ===== Badge ===== */
.badge {
    border-radius: 20px;
    font-weight: 600;
    padding: 6px 12px;
}

.badge.bg-success {
    background-color: #198754 !important;
}

/* ===== Alert ===== */
.alert {
    border-radius: 10px;
    font-size: 0.9rem;
}

/* ===== Pagination ===== */
.pagination {
    gap: 4px;
}

.page-link {
    border-radius: 8px !important;
    color: #0d6efd;
}

.page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* ===== Download Buttons ===== */
.btn-download {
    min-width: 180px;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-download.pdf {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-download.excel {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .laporanKondisi-container {
        padding: 20px 15px;
    }

    .laporanKondisi-filterBox {
        padding: 15px;
    }

    .laporanKondisi-filterBox .row > div {
        margin-bottom: 15px;
    }

    .btn-download {
        width: 100%;
        margin-bottom: 10px;
    }

    .laporanKondisi-tableWrapper .card-header {
        padding: 12px 15px;
    }

    .table {
        min-width: 600px;
    }
}

