/* Main Container Styles */
.flyer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
}

/* Headers */
.page-title {
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.warning-text {
    color: #e74c3c;
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 20px;
}

/* Form Sections */
.form-section {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.section-divider {
    border-top: 2px solid #eee;
    margin: 25px 0;
}

/* Form Controls */
.custom-select {
    height: 40px;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.custom-select:focus {
    border-color: #3498db;
    box-shadow: none;
}

.form-control {
    border: 2px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52,152,219,0.3);
}

/* Labels */
label {
    font-weight: 600;
    color: #34495e;
    margin-bottom: 8px;
}

/* Office Info Section */
.office-info {
    background-color: #f1f8ff;
}

/* Image Selection Area */
#divFlairPics {
    border: 2px dashed #bdc3c7;
    border-radius: 6px;
    padding: 15px;
    background-color: #fafafa;
}

/* Button Styles */
.form-actions {
    text-align: center;
    margin-top: 30px;
}

/*.btn-success {
    padding: 12px 30px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}*/

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .flyer-container {
        padding: 15px;
    }
    
    .form-section {
        padding: 15px;
    }
}

/* RTL Specific Adjustments */
.text-right {
    direction: rtl;
}

/* Add some animation */
.form-control, .btn {
    transition: all 0.3s ease;
}

/* Optional: Add subtle hover effects */
.form-section:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
} 