    /* Filter Styles */
    .filter-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        margin-bottom: 25px;
        border: 1px solid #e9ecef;
    }
    
    .filter-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 15px 20px;
        border-radius: 12px 12px 0 0;
    }
    
    .filter-header h3 {
        margin: 0;
        font-size: 18px;
        font-weight: 600;
    }
    
    .filter-body {
        padding: 20px;
    }
    
    .filter-form {
        display: flex;
        align-items: end;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .filter-group {
        flex: 1;
        min-width: 200px;
    }
    
    .filter-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #495057;
    }
    
    .form-select {
        width: 100%;
        padding: 10px 12px;
        border: 2px solid #e9ecef;
        border-radius: 8px;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .form-select:focus {
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        outline: none;
    }
    
    .filter-actions {
        display: flex;
        gap: 10px;
    }
    
    .btn-filter {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        color: white;
        padding: 10px 20px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-filter:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
    }
    
    .btn-clear {
        background: #6c757d;
        color: white;
        padding: 10px 15px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-clear:hover {
        background: #5a6268;
        transform: translateY(-2px);
        color: white;
    }
    
    .filter-active {
        margin-top: 15px;
        padding: 12px;
        background: #d4edda;
        border: 1px solid #c3e6cb;
        border-radius: 8px;
    }
    
    .active-badge {
        color: #155724;
        font-size: 14px;
    }
    
    /* Table Styles */
    .table-section {
        margin-top: 20px;
    }
    
    .table-card {
        background: white;
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.08);
        overflow: hidden;
    }
    
    .table-header {
        background: #f8f9fa;
        padding: 15px 20px;
        border-bottom: 1px solid #dee2e6;
        display: flex;
        justify-content: between;
        align-items: center;
    }
    
    .table-header h5 {
        margin: 0;
        color: #495057;
        font-weight: 600;
    }
    
    .total-badge {
        background: #667eea;
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 14px;
        font-weight: 600;
    }
    
    .type-badge {
        background: #667eea;
        color: white;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 12px;
        font-weight: 500;
    }
    
    .type-badge.none {
        background: #6c757d;
    }
    
    .action-buttons {
        display: flex;
        gap: 5px;
    }
    
    .btn-action {
        padding: 6px 10px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .btn-action.view {
        background: #28a745;
        color: white;
    }
    
    .btn-action.download {
        background: #007bff;
        color: white;
    }
    
    .btn-action:hover {
        transform: scale(1.1);
    }
    
    .description {
        color: #6c757d;
        font-size: 13px;
        line-height: 1.4;
    }
    
    /* DataTables Custom */
    .dataTables_wrapper {
        padding: 0;
    }
    
    .dataTables_filter input {
        border: 2px solid #e9ecef;
        border-radius: 8px;
        padding: 8px 12px;
        margin-left: 10px;
    }
    
    .dataTables_length select {
        border: 2px solid #e9ecef;
        border-radius: 8px;
        padding: 6px;
    }
    
    .table-hover tbody tr:hover {
        background: rgba(102, 126, 234, 0.05) !important;
    }

    /* ===== Top Bar ===== */
.header__top {
  background: linear-gradient(90deg, #003366, #005580);
  color: white;
  font-size: 14px;
  padding: 5px 0;
}

.contact-info i,
.contact-info a,
.social-links a i {
  color: white;
  transition: color 0.3s ease;
}

.contact-info a:hover,
.social-links a:hover i {
  color: #ffd700;
}

.social-links a {
  margin-left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.social-links a:hover {
  background: #ffd700;
}

/* ===== Branding Bar ===== */
.branding {
  background: #ffffff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.branding .logo img {
  height: 50px;
  margin-right: 10px;
  border-radius: 8px;
}

.branding .sitename {
  font-weight: 700;
  color: #003366;
  letter-spacing: 1px;
  margin: 0;
}

/* ===== Navigation ===== */
.navmenu ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.navmenu a {
  text-decoration: none;
  color: #003366;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.navmenu a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #ffd700;
  transition: width 0.3s ease;
}

.navmenu a:hover {
  color: #005580;
}

.navmenu a:hover::after {
  width: 100%;
}

/* ===== Dropdown ===== */
.dropdown-menu {
  background-color: #fff;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  border-radius: 8px;
}

.dropdown-menu a {
  color: #003366 !important;
  font-weight: 500;
}

.dropdown-menu a:hover {
  background-color: #f0f8ff;
}

/* ===== Mobile Toggle ===== */
.mobile-nav-toggle {
  color: #003366;
  font-size: 24px;
  cursor: pointer;
}
