/* Retail Quote Flow - Shared Styles */

/* Sidebar Navigation */
.sidebar-nav {
    border-right: 1px solid #dee2e6;
    min-height: calc(100vh - 150px);
    padding-top: 180px !important;
}

.sidebar-nav .nav-item {
    position: relative;
    padding: 12px 20px 12px 35px;
    color: #6c757d;
    font-size: 0.95rem;
    text-decoration: none;
    display: block;
}

.sidebar-nav a.nav-item:hover {
    color: #082851;
}

.sidebar-nav .nav-sub-item {
    padding: 8px 20px 8px 55px;
    color: #6c757d;
    font-size: 0.85rem;
    text-decoration: none;
    display: block;
}

.sidebar-nav a.nav-sub-item:hover {
    color: #082851;
}

.sidebar-nav .nav-sub-item.active {
    color: #082851;
    font-weight: 600;
}

.sidebar-nav .nav-item.active {
    color: #082851;
    font-weight: 600;
}

.sidebar-nav .nav-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #082851;
}

.sidebar-nav .nav-item.completed {
    color: #082851;
}

/* Progress Bar */
.progress-thin {
    height: 20px;
    border-radius: 4px;
    position: relative;
}

.progress-thin .progress-label {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #6c757d;
}

/* Form Section */
.form-section {
    max-width: 700px;
}

/* Dark Mode */
[data-bs-theme="dark"] .sidebar-nav {
    border-right-color: #495057;
}

[data-bs-theme="dark"] .sidebar-nav .nav-item {
    color: #adb5bd;
}

[data-bs-theme="dark"] .sidebar-nav a.nav-item:hover {
    color: #fff;
}

[data-bs-theme="dark"] .sidebar-nav .nav-item.active {
    color: #fff;
}

[data-bs-theme="dark"] .sidebar-nav .nav-item.active::before {
    background-color: #4dabf7;
}

[data-bs-theme="dark"] .sidebar-nav .nav-item.completed {
    color: #74c0fc;
}

[data-bs-theme="dark"] .sidebar-nav .nav-sub-item {
    color: #adb5bd;
}

[data-bs-theme="dark"] .sidebar-nav a.nav-sub-item:hover {
    color: #fff;
}

[data-bs-theme="dark"] .sidebar-nav .nav-sub-item.active {
    color: #fff;
}

[data-bs-theme="dark"] img[src*="Logo"] {
    filter: brightness(0) invert(1);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .sidebar-nav {
        min-height: auto;
        border-right: none;
        border-bottom: 1px solid #dee2e6;
        margin-bottom: 20px;
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding: 0 !important;
    }

    .sidebar-nav::-webkit-scrollbar {
        display: none;
    }

    .sidebar-nav .nav-item,
    .sidebar-nav .nav-sub-item {
        flex: 0 0 auto;
        padding: 12px 16px;
        white-space: nowrap;
    }

    .sidebar-nav .nav-item.active::before {
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: auto;
        height: 4px;
    }
}
