.training-options {
    display: flex;
    align-items: center;
    gap: 10px; /* Space between elements */
    margin-top: 8px;
}

/* Ensure select dropdowns have a consistent width */
.dropdown {
    width: auto;
    min-width: 120px; /* Prevents dropdowns from being too small */
}

/* Adjust radio buttons so they align nicely */
.training-options input[type="radio"] {
    margin: 0;
    transform: scale(1.2); /* Slightly larger radio button */
}

/* Reduce label spacing */
.training-options label {
    margin: 0;
    font-size: 16px;
}

/* Responsive behavior for smaller screens */
@media (max-width: 600px) {
    .training-options {
        flex-wrap: wrap; /* Wraps items onto a new line on small screens */
        gap: 5px;
    }
}


.two-column-container {
    display: flex;
    gap: 10px;
}

    .two-column-container .form-group {
        flex: 1;
    }

@media (max-width: 768px) {
    .two-column-container {
        flex-direction: column;
    }
}