/* Main Container */
.edv-container {
    max-width: 600px;
    margin: 40px auto;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}

/* Header */
.edv-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 20px;
}

.edv-header h2 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 28px;
}

.edv-header p {
    color: #7f8c8d;
    font-size: 16px;
}

/* Form Styles */
.edv-form {
    margin-bottom: 30px;
}

.edv-form-group {
    margin-bottom: 25px;
}

.edv-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #34495e;
    font-size: 14px;
}

.edv-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.edv-form-group input:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.edv-form-group input.error {
    border-color: #e74c3c;
}

/* Submit Button */
.edv-submit-btn {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 50px;
}

.edv-submit-btn:hover {
    background: linear-gradient(135deg, #2980b9, #1f639b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.edv-submit-btn:active {
    transform: translateY(0);
}

.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Error Messages */
.edv-error {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    min-height: 20px;
}

/* Result Messages */
.edv-result {
    margin-top: 20px;
    padding: 20px;
    border-radius: 8px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.edv-success-message {
    background: #e8f6ef;
    border-left: 4px solid #27ae60;
    padding: 20px;
}

.edv-error-message {
    background: #fdedec;
    border-left: 4px solid #e74c3c;
    padding: 20px;
}

.success-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.success-icon {
    background: #27ae60;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.success-details {
    background: white;
    padding: 15px;
    border-radius: 6px;
    margin: 15px 0;
}

.success-details p {
    margin: 8px 0;
    color: #2c3e50;
}

.status-verified {
    color: #27ae60;
    font-weight: bold;
    background: rgba(39, 174, 96, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.success-footer {
    font-size: 14px;
    color: #7f8c8d;
    border-top: 1px solid #d5e8d9;
    padding-top: 15px;
    margin-top: 15px;
}

/* Info Section */
.edv-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
    margin-top: 30px;
}

.edv-info h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 10px;
}

.edv-info p {
    color: #7f8c8d;
    margin: 5px 0;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .edv-container {
        margin: 20px;
        padding: 20px;
    }
    
    .edv-header h2 {
        font-size: 24px;
    }
}

/* Admin Styles */
.status-active {
    color: #27ae60;
    font-weight: bold;
}

.status-inactive {
    color: #e74c3c;
    font-weight: bold;
}

.edv-admin-info {
    margin-top: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.edv-admin-info code {
    background: #2c3e50;
    color: white;
    padding: 10px 15px;
    border-radius: 4px;
    display: inline-block;
    margin: 10px 0;
}