/* Modern form styling - aplicado apenas onde usar .modern-form */
.modern-form label {
    color: #5d6470;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.modern-form .form-control,
.modern-form .custom-select {
    background: #ffffff;
    border-color: #d7dce3;
    border-radius: 10px;
    box-shadow: none;
    height: calc(1.5em + 0.75rem + 6px);
}

.modern-form .form-control:focus,
.modern-form .custom-select:focus {
    border-color: #6aa0e8;
    box-shadow: 0 0 0 0.2rem rgba(106, 160, 232, 0.2);
}

.modern-form .custom-control {
    border-radius: 999px;
}

.modern-form .custom-control-label {
    color: #4b5563;
    font-size: 0.85rem;
    text-transform: none;
}

.modern-form .custom-control-label::before {
    border-radius: 999px;
}

.modern-form .custom-control-input:checked ~ .custom-control-label::before {
    background: #2f6fed;
    border-color: #2f6fed;
}

.modern-form textarea.form-control {
    height: auto;
}

/* Select2 styling */
.modern-form .select2-container {
    width: 100% !important;
}

.modern-form .select2-container .select2-selection--single {
    background: #ffffff !important;
    border: 1px solid #d7dce3 !important;
    border-radius: 10px !important;
    height: calc(1.5em + 0.75rem + 6px) !important;
    padding: 0;
}

.modern-form .select2-container .select2-selection--single .select2-selection__rendered {
    line-height: calc(1.5em + 0.75rem + 6px) !important;
    padding-left: 12px;
    color: #495057;
}

.modern-form .select2-container .select2-selection--single .select2-selection__arrow {
    height: calc(1.5em + 0.75rem + 6px) !important;
    right: 8px;
}

.modern-form .select2-container--focus .select2-selection--single,
.modern-form .select2-container--open .select2-selection--single {
    border-color: #6aa0e8 !important;
    box-shadow: 0 0 0 0.2rem rgba(106, 160, 232, 0.2) !important;
    outline: none !important;
}

.modern-form .select2-container .select2-selection--multiple {
    background: #ffffff !important;
    border: 1px solid #d7dce3 !important;
    border-radius: 10px !important;
    min-height: calc(1.5em + 0.75rem + 6px) !important;
}

.modern-form .select2-container--focus .select2-selection--multiple,
.modern-form .select2-container--open .select2-selection--multiple {
    border-color: #6aa0e8 !important;
    box-shadow: 0 0 0 0.2rem rgba(106, 160, 232, 0.2) !important;
    outline: none !important;
}

.modern-form .select2-container .select2-selection--multiple .select2-selection__choice {
    background: #2f6fed !important;
    border-color: #2f6fed !important;
    border-radius: 8px !important;
    color: #fff;
}

.modern-form .select2-container .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
    margin-right: 5px;
}

.modern-form .select2-container .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #e0e0e0;
}

/* Dropdown do Select2 também com bordas arredondadas */
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: #6aa0e8 !important;
}

.select2-dropdown {
    border: 1px solid #d7dce3 !important;
    border-radius: 10px !important;
}

.select2-search--dropdown .select2-search__field {
    border: 1px solid #d7dce3 !important;
    border-radius: 8px !important;
}
