/* custom-reports.css */
/* Modern, Premium Redesign for Report Pages */

.card-header p i
{
font-size: 15px !important;
    margin-left: 0px; 
}
/* Card Styling */
.modern-report-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: none;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.modern-report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.modern-report-card .card-body {
    padding: 25px;
}

/* Filter Controls Container */
.filter-container {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
    border: 1px solid #edf2f9;
}

.filter-container label {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Inputs */
.modern-input {
    border-radius: 8px;
    border: 1px solid #d8e2ef;
    padding: 10px 15px;
    font-size: 14px;
    color: #4d5969;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.02);
    transition: all 0.2s;
    width: 100%;
}

.modern-input:focus {
    border-color: #006aff;
    box-shadow: 0 0 0 3px rgba(0, 106, 255, 0.15);
    outline: none;
}

/* Primary Search Button */
.btn-modern-search {
    background: linear-gradient(135deg, #006aff 0%, #004ecc 100%);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    padding: 10px 25px;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 10px rgba(0, 106, 255, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 28px;
}

.btn-modern-search:hover {
    background: linear-gradient(135deg, #005ce6 0%, #003db3 100%);
    box-shadow: 0 6px 15px rgba(0, 106, 255, 0.4);
    transform: translateY(-1px);
    color: white;
}

/* Modern Data Table */
.modern-data-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 10px;
}

.modern-data-table th {
    background-color: #f1f5f9;
    color: #334155;
    font-weight: 600;
    padding: 15px 12px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #e2e8f0;
    white-space: nowrap;
}

.modern-data-table td {
    padding: 16px 12px;
    vertical-align: middle;
    border-bottom: 1px solid #f1f5f9;
    color: #475569;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.modern-data-table tbody tr {
    transition: all 0.2s ease;
}

.modern-data-table tbody tr:hover {
    background-color: #f8fafc;
    transform: scale(1.001);
    box-shadow: inset 3px 0 0 #006aff;
}

/* Status Badges */
.modern-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    display: inline-block;
}

.modern-badge-primary {
    background-color: rgba(0, 106, 255, 0.1);
    color: #006aff;
}

.modern-badge-success {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.modern-badge-danger {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.modern-badge-warning {
    background-color: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

/* Typography Enhancements */
.text-highlight-primary {
    color: #006aff !important;
    font-weight: 600;
}

.text-highlight-success {
    color: #10b981 !important;
    font-weight: 600;
}

.text-highlight-danger {
    color: #ef4444 !important;
    font-weight: 600;
}

/* Custom Scrollbar for table responsiveness */
.table-responsive::-webkit-scrollbar {
    height: 8px;
}

.table-responsive::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.table-responsive::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Fix global font-awesome 6 SVG sizing inside icon-box */
.dashboard-default .icon-box svg,
.card .icon-box svg {
    width: 1em !important;
    height: 1em !important;
}
