img, video {
    max-width: none !important;
    max-height: none !important;
}
/* ========================================
   DPS ADMISSION FORM - CLEAN & SIMPLE CSS
   ======================================== */

/* Global Form Container */
.dps-admission-form {
    background: white !important;
    width: 100% !important;
    min-height: 100vh !important;
}

/* FluentForm Container */
.dps-admission-form #fluentform_3,
.dps-admission-form #fluentform_3 .fluentform,
.dps-admission-form #fluentform_3 .ff-form-wrap {
    background: white !important;
    border: none !important;
    box-shadow: none !important;
}


/* Form Sections */
.dps-admission-form #fluentform_3 .ff-el-section-break {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    padding: 1rem 1.5rem !important;
    margin: 1.5rem 0 1rem 0 !important;
}

.dps-admission-form #fluentform_3 .ff-el-section-break h3 {
    color: #1e293b !important;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    margin: 0 !important;
}

/* Form Groups */
.dps-admission-form #fluentform_3 .ff-el-group {
    margin-bottom: 1.5rem !important;
}

.fluentform .iti__selected-flag{
	background:none!important ;
}

.fluentform_wrapper_3.ffs_custom_wrap .ff-el-input--label label{
	color:black!important;
}

.dps-admission-form #fluentform_3 input:focus,
.dps-admission-form #fluentform_3 select:focus,
.dps-admission-form #fluentform_3 textarea:focus {
    border-color: #1e40af !important;
    outline: none !important;
}

/* Select Dropdown Arrow */
.dps-admission-form #fluentform_3 select {
    appearance: none !important;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%231e40af' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E") !important;
    background-position: right 0.5rem center !important;
    background-repeat: no-repeat !important;
    background-size: 1.5em 1.5em !important;
    padding-right: 2.5rem !important;
}

/* File Upload Button - SIMPLE FIX */
.dps-admission-form #fluentform_3 input[type="file"],
.dps-admission-form #fluentform_3 .ff-btn {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%) !important;
    color: white !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 0.75rem 1.5rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    height: auto !important;
    width: auto !important;
}

.dps-admission-form #fluentform_3 input[type="file"]:hover,
.dps-admission-form #fluentform_3 .ff-btn:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
}

/* File Upload Container */
.dps-admission-form #fluentform_3 .ff-el-file-input {
    border: 2px dashed #93c5fd !important;
    border-radius: 6px !important;
    padding: 1.5rem !important;
    text-align: center !important;
    background: #eff6ff !important;
    min-height: 100px !important;
}

/* Submit Button */
.dps-admission-form #fluentform_3 .ff-btn-submit {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%) !important;
    color: white !important;
    border: none !important;
    padding: 1rem 2rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}

.dps-admission-form #fluentform_3 .ff-btn-submit:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%) !important;
}

/* Step Navigation Buttons */
.dps-admission-form #fluentform_3 .ff-btn-secondary {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%) !important;
    color: white !important;
    border: none !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}

/* Grid Layout */
.dps-admission-form #fluentform_3 .ff-el-group.ff-el-form-inline {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
    gap: 1rem !important;
}

/* Error Messages */
.dps-admission-form #fluentform_3 .text-danger,
.dps-admission-form #fluentform_3 .error {
    color: #dc2626 !important;
    font-size: 0.8rem !important;
}

.dps-admission-form #fluentform_3 .ff-el-is-error input,
.dps-admission-form #fluentform_3 .ff-el-is-error select {
    border-color: #ef4444 !important;
}

/* Success Messages */
.dps-admission-form #fluentform_3 .ff-message-success {
    background: #dcfce7 !important;
    color: #166534 !important;
    border: 1px solid #bbf7d0 !important;
    border-radius: 6px !important;
    padding: 1rem !important;
}

/* Progress Bar */
.dps-admission-form #fluentform_3 .ff-el-progress {
    background: #e5e7eb !important;
    border-radius: 4px !important;
    margin-bottom: 2rem !important;
}

.dps-admission-form #fluentform_3 .ff-el-progress-bar {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%) !important;
    height: 8px !important;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .dps-admission-form #fluentform_3 .ff-el-group.ff-el-form-inline {
        grid-template-columns: 1fr !important;
    }
    
    .dps-admission-form #fluentform_3 .ff-btn-submit {
        width: 100% !important;
    }
}