/* Custom Overrides for SmartERP */

/* Theme Toggle Utilities */
[data-bs-theme="dark"] .d-none-dark {
    display: none !important;
}
[data-bs-theme="light"] .d-none-light {
    display: none !important;
}

/* Custom Text and Borders for Urdu RTL Support */
[dir="rtl"] .text-end {
    text-align: left !important;
}
[dir="rtl"] .text-start {
    text-align: right !important;
}

/* Select2 Bootstrap 5 Dark Mode Adaptations */
[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-selection {
    background-color: #1b2434;
    border-color: #2d3d55;
    color: #f4f6fa;
}
[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-dropdown {
    background-color: #1b2434;
    border-color: #2d3d55;
}
[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-results__option {
    color: #f4f6fa;
}
[data-bs-theme="dark"] .select2-container--bootstrap-5 .select2-results__option--highlighted {
    background-color: #206bc4;
    color: #ffffff;
}

/* Print Invoice Styles */
@media print {
    body * {
        visibility: hidden;
    }
    #invoice-print-area, #invoice-print-area * {
        visibility: visible;
    }
    #invoice-print-area {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: white !important;
        color: black !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .d-print-none {
        display: none !important;
    }
}

/* Stepper Custom Design */
.steps-counter {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}
.step-item {
    flex: 1;
    text-align: center;
    padding: 0.5rem 0;
    border-bottom: 3px solid #e6e8e9;
    color: #6e7a8a;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}
.step-item.active {
    color: #206bc4;
    border-bottom-color: #206bc4;
}
.step-item.step-item-completed {
    color: #2fb344;
    border-bottom-color: #2fb344;
}
