/* Stili per il form di richiesta di assistenza */
.rda-form-container {
    max-width: 800px;
    margin: 2rem auto;
    padding: 2rem;
    background: transparent;
    border: none;
    border-radius: 8px;
    font-family: sans-serif;
}

.rda-form-container h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.rda-form-group {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #eee;
}

.rda-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

.rda-form-group input[type='text'],
.rda-form-group input[type='email'],
.rda-form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.rda-form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.rda-radio-group label {
    font-weight: normal;
    margin-right: 1rem;
}

.rda-priority-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rda-priority-group .rda-radio-option {
    text-align: center;
}

.rda-priority-group .rda-radio-option label {
    font-weight: normal;
}

.rda-form-group input[type='file'] {
    padding: 0.5rem;
}

.rda-submit-btn {
    display: block;
    width: 100%;
    padding: 0.85rem;
    color: #0073aa;
    border: 1px solid #0073aa;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.rda-submit-btn:hover {
    background-color: #0073aa;
    color: white;
}

/* Messaggi di feedback */
.rda-feedback-message {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.rda-feedback-message.success {
    color: #155724;
    border: 1px solid #c3e6cb;
}

.rda-feedback-message.error {
    color: #721c24;
    border: 1px solid #f5c6cb;
}
