/* Optimized Dashboard CSS for Better Visibility and Professional Appearance */

/* Enhanced Root Variables */
:root {
    --primary-blue: #1e40af;
    --ocean-blue: #0ea5e9;
    --deep-ocean: #0369a1;
    --seafoam: #06b6d4;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --success: #10b981;
    --success-bg: #d1fae5;
    --warning: #f59e0b;
    --warning-bg: #fef3c7;
    --danger: #ef4444;
    --danger-bg: #fecaca;
    --info: #3b82f6;
    --info-bg: #dbeafe;
    --card-bg: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-color: #e2e8f0;
    --hover-bg: #f1f5f9;
}

/* Global Optimizations */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--gray-50);
}

/* Enhanced Dashboard Container */
.dashboard-container {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 30%, #ffffff 100%);
    min-height: 100vh;
    padding: 1rem 0;
    position: relative;
    z-index: 1;
}

/* Logo Card */
.logo-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.1),
        0 1px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.logo-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.8) 0%, 
        rgba(30, 64, 175, 0.1) 50%,
        rgba(255, 255, 255, 0.8) 100%);
    border-radius: 23px;
    z-index: -1;
    pointer-events: none;
    filter: blur(2px);
}

.logo-card:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-1px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.12),
        0 3px 12px rgba(0, 0, 0, 0.08);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8));
}

.logo-card:hover::before {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9) 0%, 
        rgba(30, 64, 175, 0.15) 50%,
        rgba(255, 255, 255, 0.9) 100%);
    filter: blur(3px);
}

.logo-card h1 {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    font-weight: 700;
}

.logo-card p {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    opacity: 0.9;
}

/* Professional Cards */
.dashboard-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.dashboard-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.dashboard-card .card-header {
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 1.5rem;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
}

.dashboard-card .card-title {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dashboard-card .card-body {
    padding: 1.5rem;
    overflow: hidden;
}

/* Card Icon Containers */
.card-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--ocean-blue));
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.card-icon-container:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.card-icon-container i {
    font-size: 1.5rem;
}

/* Optimized Metric Cards */
.simple-metric {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.simple-metric:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.metric-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.metric-icon-top {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue), var(--ocean-blue));
    color: white;
    font-size: 1.75rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    margin: 0 auto 1.5rem auto;
    flex-shrink: 0;
}

.metric-icon-container:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.metric-icon-success {
    background: linear-gradient(135deg, var(--success), #059669);
}

.metric-icon-warning {
    background: linear-gradient(135deg, var(--warning), #d97706);
}

.metric-icon-info {
    background: linear-gradient(135deg, var(--info), #2563eb);
}

.metric-header .metric-icon {
    font-size: 1.75rem;
    color: white;
}

.metric-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.simple-metric .metric-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-top: 1rem;
    line-height: 1.1;
    text-align: center;
}

.metric-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.3;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    flex: 1;
}

/* Enhanced Summary Items */
.summary-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 12px;
    background: var(--gray-50);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.summary-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.summary-item-vertical {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.5rem;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 120px;
    text-align: center;
    overflow: hidden;
}

.summary-item-vertical:hover {
    background: var(--gray-50);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.summary-content-top {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 1rem;
}

.summary-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.summary-icon-bottom {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
    margin: 0 auto;
}

.summary-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.summary-content h6 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.summary-content p {
    margin: 0.25rem 0 0 0;
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* Fleet Summary Cards */
.fleet-summary-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    min-height: 180px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.fleet-summary-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.fleet-summary-content {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fleet-summary-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
    margin: 0 auto 0.5rem auto;
    flex-shrink: 0;
}

.fleet-summary-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fleet-summary-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.3;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-summary-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.1;
    text-align: center;
    margin-top: auto;
}

/* Fleet Map Styles */
#fleetMap {
    border-radius: 8px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
    background-color: #e1f5fe;
    cursor: grab;
}

#fleetMap:active {
    cursor: grabbing;
}

.vessel-marker {
    background: transparent;
    border: none;
}

.vessel-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.vessel-popup {
    min-width: 280px;
}

.vessel-popup h6 {
    color: var(--primary-blue);
    font-weight: 700;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.vessel-info p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
}

.vessel-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Map Controls */
.leaflet-control-layers {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.leaflet-control-zoom {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.leaflet-control-zoom a {
    background: var(--white);
    border: none;
    color: var(--text-primary);
    font-weight: 600;
}

.leaflet-control-zoom a:hover {
    background: var(--gray-100);
}

/* Professional Vessel Cards */
.vessel-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vessel-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-blue);
}

.vessel-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.vessel-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vessel-type {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vessel-brand-logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--ocean-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.brand-icon:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.vessel-status {
    margin-bottom: 1.5rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.25px;
    box-shadow: var(--shadow-sm);
}

.status-good {
    background: var(--success-bg);
    color: var(--success);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-warning {
    background: var(--warning-bg);
    color: var(--warning);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-critical {
    background: var(--danger-bg);
    color: var(--danger);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.vessel-details {
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 600;
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    margin-right: 1rem;
}

.detail-label i {
    color: var(--primary-blue);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 700;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50%;
}

.vessel-actions {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

/* Enhanced Activity Items */
.activity-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.activity-item:last-child {
    border-bottom: none;
}

.activity-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.activity-content {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.activity-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.activity-content small {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Enhanced Buttons */
.btn {
    font-weight: 600;
    letter-spacing: 0.25px;
    border-radius: 8px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
    text-decoration: none;
}

.btn-maritime {
    background: linear-gradient(135deg, var(--primary-blue), var(--ocean-blue));
    border: none;
    color: white;
}

.btn-maritime:hover {
    background: linear-gradient(135deg, var(--deep-ocean), var(--primary-blue));
    color: white;
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: var(--white);
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    color: white;
}

.btn-outline-success {
    border: 2px solid var(--success);
    color: var(--success);
    background: var(--white);
}

.btn-outline-success:hover {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.btn-outline-warning {
    border: 2px solid var(--warning);
    color: var(--warning);
    background: var(--white);
}

.btn-outline-warning:hover {
    background: var(--warning);
    border-color: var(--warning);
    color: white;
}

.btn-outline-info {
    border: 2px solid var(--info);
    color: var(--info);
    background: var(--white);
}

.btn-outline-info:hover {
    background: var(--info);
    border-color: var(--info);
    color: white;
}

/* Multi-line button content */
.btn div {
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn small {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.8;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Professional Table Styles */
.table {
    margin-bottom: 0;
    background: var(--white);
}

.table thead th {
    background: var(--gray-50);
    border-bottom: 2px solid var(--border-color);
    font-weight: 700;
    color: var(--text-primary);
    padding: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.table tbody td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    font-weight: 500;
}

.table tbody tr:hover {
    background: var(--hover-bg);
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
}

.text-muted {
    color: var(--text-muted) !important;
}

.text-primary {
    color: var(--text-primary) !important;
}

.text-secondary {
    color: var(--text-secondary) !important;
}

/* Professional Loading States */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: 12px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--gray-200);
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Optimizations */
@media (max-width: 768px) {
    .dashboard-container {
        padding: 0.5rem;
    }
    
    .dashboard-card .card-body {
        padding: 1rem;
    }
    
    .simple-metric {
        padding: 1.5rem 1rem;
    }
    
    .vessel-card {
        padding: 1.25rem;
    }
    
    .summary-item {
        padding: 1rem;
    }
    
    .summary-item-vertical {
        height: 100px;
        padding: 1rem;
    }
    
    .summary-icon {
        width: 50px;
        height: 50px;
    }
    
    .fleet-summary-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .fleet-summary-card {
        height: 120px;
        padding: 1rem;
    }
    
    .fleet-summary-description {
        font-size: 0.8rem;
        min-height: 2rem;
    }
    
    .fleet-summary-value {
        font-size: 1.5rem;
    }
    
    .activity-icon {
        width: 40px;
        height: 40px;
    }
    
    .metric-icon-top {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .vessel-name {
        font-size: 1.1rem;
    }
    
    .vessel-type {
        font-size: 0.85rem;
    }
    
    .detail-value {
        font-size: 0.9rem;
        max-width: 60%;
    }
}

/* Print Optimization */
@media print {
    .dashboard-container {
        background: white;
    }
    
    .dashboard-card {
        box-shadow: none;
        border: 1px solid var(--border-color);
    }
    
    .btn {
        display: none;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --text-primary: #000000;
        --text-secondary: #333333;
        --text-muted: #666666;
        --border-color: #333333;
    }
    
    .dashboard-card {
        border: 2px solid var(--border-color);
    }
    
    .status-badge {
        border: 2px solid currentColor;
    }
}

/* Focus Styles for Accessibility */
*:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

.btn:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* Enhanced Form Controls */
.form-control, .form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.25);
}

/* Enhanced Tooltips */
.tooltip {
    font-size: 0.875rem;
    font-weight: 500;
}

.tooltip-inner {
    background-color: var(--gray-800);
    color: var(--white);
    border-radius: 6px;
    padding: 0.75rem 1rem;
    max-width: 300px;
}

/* Enhanced Spacing */
.mb-enhanced {
    margin-bottom: 2rem;
}

.mt-enhanced {
    margin-top: 2rem;
}

.py-enhanced {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

/* Enhanced Icons */
.icon-enhanced {
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1rem;
    margin-right: 0.75rem;
}

.icon-primary {
    background: var(--primary-blue);
    color: var(--white);
}

.icon-success {
    background: var(--success);
    color: var(--white);
}

.icon-warning {
    background: var(--warning);
    color: var(--white);
}

.icon-danger {
    background: var(--danger);
    color: var(--white);
}

.icon-info {
    background: var(--info);
    color: var(--white);
}

/* Enhanced Text Styles */
.text-enhanced {
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
}

.text-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.text-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.text-description {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
    line-height: 1.4;
}

/* Enhanced Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in {
    animation: slideIn 0.4s ease-out;
}

/* Enhanced Shadows */
.shadow-enhanced {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-hover:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-2px);
}

/* Enhanced Borders */
.border-enhanced {
    border: 2px solid var(--border-color);
    border-radius: 12px;
}

.border-primary {
    border-color: var(--primary-blue);
}

.border-success {
    border-color: var(--success);
}

.border-warning {
    border-color: var(--warning);
}

.border-danger {
    border-color: var(--danger);
}

/* Enhanced Backgrounds */
.bg-enhanced {
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-50) 100%);
}

.bg-primary-light {
    background: rgba(30, 64, 175, 0.1);
    border: 1px solid rgba(30, 64, 175, 0.2);
}

.bg-success-light {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.bg-warning-light {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.bg-danger-light {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}