/* Admission Form Section - Compact Version */
.admission-section .form-title {
    padding-top: 10px; 
    margin-top: 0;
    margin-top: 20px; /* Added space between ticker and form */
    color: #0066cc;
}

.form-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 25px; /* Reduced from original */
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
    margin-top: 30px; /* Added space below ticker */
}

#subjects {
    height: auto;
    min-height: 150px; /* Shows approximately 5 options */
    max-height: 150px;
    overflow-y: auto;
    padding: 8px 12px;
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
}

/* Option styling */
#subjects option {
    padding: 6px 10px;
    margin: 2px 0;
    border-bottom: 1px solid #f1f1f1;
}

.form-title {
    font-size: 1.8rem; /* Slightly smaller */
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f1f1;
}

/* Form elements */
.form-label {
    font-weight: 500;
    margin-bottom: 5px; /* Reduced spacing */
    font-size: 0.95rem; /* Slightly smaller */
}

.form-control, .form-select {
    padding: 8px 12px; /* More compact */
    height: 40px; /* Reduced height */
    font-size: 0.95rem;
    margin-bottom: 12px; /* Reduced spacing */
}

textarea.form-control {
    height: 80px; /* Reduced height */
    min-height: 80px;
}

/* Submit button */
.btn-primary {
    padding: 10px 20px; /* More compact */
    font-size: 1rem;
    margin-top: 15px; /* Reduced spacing */
}

/* Message container */
#message-container {
    max-width: 800px;
    margin: 0 auto 20px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .form-container {
        padding: 20px;
        margin-top: 10px;
    }
    
 #subjects {
        min-height: 120px;
        max-height: 120px;
    }

    .form-title {

        font-size: 1.6rem;
        margin-top: 0; 
        padding-top: 0;
    }
    
    .form-control, .form-select {
        height: 38px;
        font-size: 0.9rem;
    }
    
    textarea.form-control {
        height: 70px;
        min-height: 70px;
    }
}

@media all and (-ms-high-contrast: none) {
    #subjects {
        height: 150px;
    }
}

/* Edge Legacy specific fixes */
@supports (-ms-ime-align:auto) {
    #subjects {
        height: 150px;
    }
}

/* Firefox specific adjustment */
@-moz-document url-prefix() {
    #subjects {
        padding: 6px 10px;
    }
}

@media (max-width: 576px) {
    .form-container {
        padding: 15px;
    }
    #subjects {
        min-height: 100px;
        max-height: 100px;
    }
    .form-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .form-label {
        font-size: 0.9rem;
    }
}