.dashboard-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 250px;
    background: #0d6efd;
    color: #fff;
    padding: 20px;
}

.sidebar h4 {
    margin-bottom: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar ul li {
    margin-bottom: 15px;
}

.sidebar ul li a {
    color: #fff;
    text-decoration: none;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: 20px;
}

/* Topbar */
.topbar {
    margin-bottom: 20px;
}

/* Cards */
.stat-card {
    padding: 20px;
    text-align: center;
}

/* registration form 22-04-2026 */
/* ===== BACKGROUND ===== */
.register-bg {
    min-height: 100vh;
    background: linear-gradient(135deg, #eef2f3, #dfe9f3);
}

/* ===== CARD ===== */
.register-card {
    width: 950px;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* ===== LEFT PANEL ===== */
.register-left {
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.register-left h2 {
    font-weight: 600;
    margin-bottom: 15px;
}

.register-left p {
    opacity: 0.9;
}

.register-left ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* ===== RIGHT PANEL ===== */
.register-right {
    padding: 40px;
}

.register-right h3 {
    font-weight: 600;
}

/* ===== INPUT FIELDS ===== */
.custom-input {
    border-radius: 10px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
    font-size: 14px;
}

.custom-input:focus {
    border-color: #6610f2;
    box-shadow: 0 0 8px rgba(102,16,242,0.2);
}

/* ===== SELECT FIX ===== */
select.custom-input {
    cursor: pointer;
}

/* ===== TEXTAREA ===== */
textarea.custom-input {
    resize: none;
}

/* ===== CHECKBOX SECTION ===== */
.form-label {
    font-weight: 500;
    margin-bottom: 8px;
}

.mb-3 input[type="checkbox"] {
    margin-right: 5px;
}

/* ===== BUTTON ===== */
.register-btn {
    border-radius: 10px;
    padding: 10px;
    font-weight: 600;
    background: #0d6efd;
    border: none;
    transition: all 0.3s ease;
}

.register-btn:hover {
    background: #6610f2;
    box-shadow: 0 5px 15px rgba(102,16,242,0.3);
}

/* ===== BACK BUTTON ===== */
.btn-outline-primary {
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-outline-primary:hover {
    transform: translateX(-3px);
}

/* ===== SPACING IMPROVEMENT ===== */
.mb-3 {
    margin-bottom: 15px !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .register-card {
        width: 100%;
    }

    .register-left {
        text-align: center;
        padding: 25px;
    }

    .register-right {
        padding: 25px;
    }
}
 /* ===== GLOBAL ===== */
    body {
        margin: 0;
        background: #f4f6fb;
        font-family: 'Segoe UI', sans-serif;
    }

    /* ===== WRAPPER ===== */
    .dashboard-wrapper {
        display: flex;
    }

    /* ===== SIDEBAR FIX SUPPORT ===== */
    .sidebar {
        width: 250px;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
    }

    /* ===== MAIN CONTENT ===== */
    .main-content {
        margin-left: 250px;
        padding: 25px;
        width: 100%;
    }

    /* ===== HEADER CARD ===== */
    .dashboard-header {
        padding: 15px 20px;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        animation: fadeIn 0.6s ease;
    }

    /* ===== MAIN CARD ===== */
    .main-card {
        padding: 20px;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        animation: fadeInUp 0.6s ease;
    }

    /* ===== DASH CARDS ===== */
    .dash-card {
        background: linear-gradient(135deg, #2563eb, #7c3aed);
        color: #fff;
        padding: 20px;
        border-radius: 12px;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* HOVER EFFECT */
    .dash-card:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }

    /* TEXT */
    .dash-card h6 {
        font-size: 14px;
        opacity: 0.9;
    }

    .dash-card h3 {
        font-size: 28px;
        font-weight: bold;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {

        .sidebar {
            position: relative;
            width: 100%;
            height: auto;
        }

        .main-content {
            margin-left: 0;
            padding: 15px;
        }

    }

    /* in side login useds css for login page 22-04-2026 */