.container-laporan {
    width: 100%;
    margin: 40px auto;
    font-family: 'Poppins', sans-serif;
}

.judul-laporan {
    text-align: center;
    font-weight: 700;
    color: #1a3365;
    margin-bottom: 25px;
    letter-spacing: 1px;
    font-family: 'Bebas Neue', sans-serif;
}

/* ====== MENU LAPORAN ====== */
.menu-laporan {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.btn-tab {
    padding: 10px 20px;
    border-radius: 8px;
    border: 1.5px solid #d0d7e3;
    background-color: #f8f9fb;
    color: #001f3f;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    font-size: 14px;
}

.btn-tab::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(28, 63, 119, 0.1);
    transition: left 0.3s ease;
    border-radius: 8px;
}

.btn-tab:hover::after {
    left: 0;
}

.btn-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(28, 63, 119, 0.2);
}

.btn-tab:active {
    transform: scale(0.96);
    box-shadow: 0 2px 5px rgba(28, 63, 119, 0.15);
}

.btn-tab.active {
    background-color: #1c3f77;
    color: #fff;
    border-color: #1c3f77;
    box-shadow: 0 6px 12px rgba(28, 63, 119, 0.25);
    transform: scale(1.03);
}

/* ====== FILTER SECTION ====== */
.filter-laporan {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
    align-items: center;
    border: none;
}

.search-laporan {
    position: relative;
    flex: 1;
    min-width: 200px;
    border: none;
}

.search-laporan input {
    width: 100%;
    padding: 10px 35px 10px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #f5f7fa;
    font-size: 14px;
    border: none;
}

.search-laporan i {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #1a3365;
    border: none;
}

.filter-laporan select {
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #f5f7fa;
    flex: 1;
    min-width: 150px;
    border: none;
}

/* ====== TABLE LAPORAN ====== */
.table-laporan-wrapper {
    width: 100%;
    margin-top: 15px;
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    background: #fff;
    padding: 5px;
    -webkit-overflow-scrolling: touch;
}

.table-laporan {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    overflow: hidden;
    min-width: 800px;
}

.table-laporan th {
    background: #f5f7fa;
    text-transform: uppercase;
    font-size: 13px;
    color: #1a3365;
    padding: 12px 16px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.table-laporan td {
    border-top: 1px solid #eee;
    padding: 12px 16px;
    font-size: 14px;
    text-align: center;
    color: #333;
}

/* Hover effect biar lebih interaktif */
.table-laporan tbody tr:hover {
    background-color: #f8faff;
    transition: background 0.2s ease;
}

/* Badge status biar nyatu */
.badge {
    border-radius: 30px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.form-input {
    background: #f5f7fa;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    padding: 8px 10px;
    flex: 1;
}

label.form-label {
    color: #1a3365;
    font-weight: 600;
    white-space: nowrap;
}

.filters{
    padding: 10px;
}

.filterLaporanPeminjamanBarang {
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (max-width: 768px) {
    .container-laporan {
        margin: 20px auto;
        padding: 0 15px;
    }

    .judul-laporan {
        font-size: 1.8rem;
    }

    .btn-tab {
        width: 100%;
        padding: 12px;
        text-align: center;
    }

    .filter-laporan {
        flex-direction: column;
        align-items: stretch;
    }

    .search-laporan, .filter-laporan select {
        width: 100%;
        min-width: 0;
    }
}
