/* dvstyle.css */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Vazir', Arial, sans-serif;
    line-height: 1.6;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: white;
}


.form-header {
    margin-bottom: 20px;

}

.form-section {
    margin-bottom: 20px;
}

.section-title {
    margin-bottom: 15px;
    font-size: 1.2em;
}

.question-title {
    display: block;
    background-color: #FFFFC8;
    padding: 10px;
    margin-bottom: 10px;
    font-size: 1em;
    font-weight: bold;
    width: 100%;
}

.question-number {
    font-weight: bold;
    margin-right: 5px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.form-column {
    flex: 1;
    padding: 0 5px;
    min-width: 200px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 5px;
}

input, select {
    width: 100%;
    padding: 5px;
    margin-bottom: 5px;
}

.translation {
    color: #666;
    font-size: 0.9em;
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 5px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }
    .form-column {
        width: 100%;
    }
}

button {
    padding: 10px 20px;
    margin-right: 10px;
    margin-top: 20px;
}

.form-footer {
    margin-top: 20px;
    font-size: 0.9em;
}

.farsi-title {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.navigation {
    margin-top: 2rem;
    text-align: center;
}

.navigation a {
    color: #3f51b5;
    text-decoration: none;
    margin: 0 0.5rem;
}

.navigation a:hover {
    text-decoration: underline;
}
/* Additional styles for the form */

.guidance {
    background-color: #f0f0f0;
    padding: 10px;
    margin-bottom: 10px;
    border-left: 4px solid #3f51b5;
}

.info-box {
    background-color: #e8f5e9;
    border: 1px solid #81c784;
    padding: 10px;
    margin-top: 10px;
    border-radius: 4px;
}

.conversion-tip {
    margin-top: 5px;
    font-style: italic;
}

.conversion-link {
    color: #3f51b5;
    text-decoration: none;
}

.conversion-link:hover {
    text-decoration: underline;
}

input[type="file"] {
    margin-top: 5px;
}

input[type="radio"],
input[type="checkbox"] {
    margin-right: 5px;
}

/* Improve readability of the form explanation */
.form-explanation {
    background-color: #e3f2fd;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Style for required fields, if needed */
.required::after {
    content: " *";
    color: red;
}

/* Improve visibility of section titles */
.section-title {
    border-bottom: 2px solid #3f51b5;
    padding-bottom: 5px;
}

/* Add some space between radio buttons and checkboxes */
.checkbox-group {
    margin-bottom: 5px;
}
