/* Bootstrap 5 Custom Variables - Dark Theme */
:root {
    /* Primary Colors */
    --bs-primary: #00d4ff;
    --bs-primary-rgb: 0, 212, 255;
    
    /* Secondary Colors */
    --bs-secondary: #b4b4b4;
    --bs-secondary-rgb: 108, 117, 125;
    
    /* Success Colors */
    --bs-success: #28a745;
    --bs-success-rgb: 40, 167, 69;
    
    /* Danger Colors */
    --bs-danger: #dc3545;
    --bs-danger-rgb: 220, 53, 69;
    
    /* Warning Colors */
    --bs-warning: #ffc107;
    --bs-warning-rgb: 255, 193, 7;
    
    /* Info Colors */
    --bs-info: #17a2b8;
    --bs-info-rgb: 23, 162, 184;
    
    /* Light Colors */
    --bs-light: #f8f9fa;
    --bs-light-rgb: 248, 249, 250;
    
    /* Dark Colors */
    --bs-dark: #212529;
    --bs-dark-rgb: 33, 37, 41;
    
    /* Body Colors */
    --bs-body-color: #ffffff;
    --bs-body-bg: #0a0e27;
    
    /* Text Colors */
    --bs-secondary-color: #6f7389;
    --bs-muted-color: #6f7389;
    
    /* Border Colors */
    --bs-border-color: rgba(0, 212, 255, 0.1);
    
    /* Link Colors */
    --bs-link-color: #00d4ff;
    --bs-link-hover-color: #0099cc;
}

