body {
/*    font-family: 'Segoe UI', sans-serif;*/
    margin: 0;
    padding: 0;
}

.default-color {
    background-color: #f8f9fa;
}

.cursor-pointer {
    cursor: pointer !important;
}

.wrapper {
    display: flex;
    flex-wrap: nowrap;
    min-height: 81vh;
}

.content, main {
    flex-grow: 1;
    padding: 0px 20px;
}

/* --- Sidebar --- */
.sidebar {
    width: 245px;
    background-color: var(--primary-color, #462064);
    color: white;
    padding: 30px 15px;
    min-height: 81vh;
    transition: all 0.3s ease;
}

.sidebar-header h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-align: center;
    text-transform: capitalize;
}

.sidebar a {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 6px 15px;
    border-radius: 8px;
    transition: 0.2s ease-in-out;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
}

    .sidebar a i {
        margin-right: 10px;
        font-size: 1rem;
    }

    .sidebar a:hover,
    .sidebar a.active {
        background-color: var(--secondary-color);
        color: var(--primary-color, #462064);
    }

/* --- Buttons --- */
.btn-purple {
    background-color: var(--primary-color, #462064);
    color:var(--secondary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    /*    display: inline-flex;*/
    align-items: center;
    gap: 5px;
    text-decoration: none;
    user-select: none;
}

    .btn-purple:hover {
        background-color: var(--primary-color-hover, #5d3780);
        color: #fff;
    }

/* --- Toggle Button --- */
.toggle-btn {
    background-color: var(--primary-color, #462064);
    color: #fff;
    border: none;
    padding: 10px 15px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 8px;
}

.alert-vendor {
    color: var(--primary-color, #462064);
}

/* --- Wizard Steps --- */
.wizard-step {
    text-align: center;
    padding: 10px;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

    .wizard-step.active {
        border-color: var(--primary-color, #462064);
        color: var(--primary-color, #462064);
        font-weight: bold;
    }

    .wizard-step i {
        display: block;
        font-size: 22px;
        margin-bottom: 5px;
    }

.wizard-content {
    display: none;
}

    .wizard-content.active {
        display: block;
    }

.vendor-form-card {
    min-height: 65vh;
}

.text-danger {
    color: red;
    font-size: 0.9rem;
}

.action-icons i {
    margin-left: 10px;
    cursor: pointer;
    color: var(--primary-color, #462064);
    transition: color 0.2s;
}

    .action-icons i:hover {
        color: var(--primary-color-hover, #5d3780);
    }

@media (max-width: 768px) {
    .sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        left: -250px;
        min-width: 200px;
        z-index: 1050;
        transition: left 0.3s ease;
        min-height: 100%;
    }

        .sidebar.show {
            left: 0;
        }

    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.4);
        z-index: 1040;
    }

        .overlay.active {
            display: block;
        }
}

