body {
    font-family: Arial, sans-serif;
    background: #f5f7fb;
}

/* Layout */
.admission-wrapper {
    display: flex;
    gap: 25px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
}

/* Sidebar */
.admission-sidebar {
    width: 220px;
}

.admission-sidebar ul {
    list-style: none;
    padding: 0;
}

.admission-sidebar li {
    background: #eef1f6;
    padding: 14px;
    margin-bottom: 12px;
    border-radius: 8px;
    font-weight: 500;
}

.admission-sidebar li.active {
    background: #1e3a8a;
    color: #fff;
}

/* Content Card */
.admission-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.full {
    grid-column: span 2;
}

/* Inputs */
input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

input:focus, select:focus {
    border-color: #1e3a8a;
    outline: none;
}

/* Buttons */
.form-actions {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
}

.btn-prev {
    background: #ccc;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
}

.btn-next {
    background: #2563eb;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
}

.btn-submit {
    background: #16a34a;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    display: none;
}

/* Checkbox */
.checkbox {
    display: flex;
    gap: 10px;
    align-items: center;
}

/* Responsive */
@media (max-width: 768px) {
    .admission-wrapper {
        flex-direction: column;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full {
        grid-column: span 1;
    }
}
/* Validation error */
.input-error {
    border: 1px solid #ef4444 !important;
    box-shadow: 0 0 0 2px rgba(239,68,68,0.15);
}

/* Apply error style to custom dropdown */
.nice-select.input-error {
    border: 1px solid #ef4444 !important;
    box-shadow: 0 0 0 2px rgba(239,68,68,0.15);
}

.admission-content input,
.admission-content select,
.nice-select {
    height: 44px;
    line-height: 44px;
    padding: 0 12px;
    color: #00000 !important;
}
.nice-select .current, .nice-select .option {
    color: #000000 !important;
}

/* VERY IMPORTANT */
.admission-content {
    overflow: visible !important;
}

.form-container,
.card,
.modal-body {
    overflow: visible !important;
}

.litepicker {
    z-index: 999999 !important;
}

.litepicker-container {
    z-index: 999999 !important;
}

.litepicker select {
    all: revert !important;
    font-size: 14px !important;
    padding: 2px 6px !important;
    height: auto !important;
    width: auto !important;
}
/* Admission Intro Section */
.admission-intro {
    background: linear-gradient(135deg, #f5f9ff, #eef4ff);
    padding: 40px 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    border: 1px solid #e6ecf5;
}

.admission-content {
    max-width: 100%;
}

/* Big Heading */
.admission-title {
    text-align:center;
    font-size: 32px;
    font-weight: 700;
    color: #1a2b49;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

/* Small Paragraph */
.admission-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #5f6b7a;
    margin: 0;
}