/* Form styles */
.request-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h3 {
    color: #2c3e50;
    font-weight: 600;
}

.form-section {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.form-section h4 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.form-group {
    flex: 1;
    min-width: 200px;
    margin: 0 10px 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.radio-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.radio-option {
    display: flex;
    align-items: center;
}

.radio-option input {
    margin-right: 5px;
}

.btn-submit {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #2980b9;
}

/* Modal styles */
.modal {
    max-width: 900px;
    padding: 30px;
}

.modal .modal-content {
    padding: 0;
}

/* Toast styles */
.toast {
    font-size: 14px;
    padding: 15px 20px;
}

.toast.green {
    background-color: #27ae60;
}

.toast.red {
    background-color: #e74c3c;
}