  /* Estilos para corregir el selector */
  .select2-container--bootstrap-5 .select2-selection {
    border: 1px solid #ced4da;
    background-color: #fff;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__rendered {
    display: flex;
    flex-wrap: wrap;
    padding-left: 8px;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice {
    background-color: #0d6efd;
    color: white;
    margin-top: 5px;
    margin-right: 5px;
    padding: 0 5px;
    border-radius: 4px;
}

.select2-container--bootstrap-5 .select2-dropdown {
    border-color: #ced4da;
    background-color: white;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__option {
    color: #212529;
    padding: 6px 12px;
}

.select2-container--bootstrap-5 .select2-dropdown .select2-results__option--highlighted {
    background-color: #0d6efd;
    color: white;
}

.select2-container--bootstrap-5 .select2-selection--multiple {
    min-height: 38px;
}

.select2-dropdown {
    max-height: 300px;
    overflow-y: auto;
}

.select2-container {
    width: 100% !important;
}

.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice__display {
    padding-left: 5px;
    padding-right: 5px;
    color: white;
}

body {
    padding: 15px;
    /* Mantener el fondo degradado de la aplicación principal */
    background: linear-gradient(180deg, #4A148C 0%, #7B1FA2 100%);
    background-attachment: fixed;
    color: white;
}

.card {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #7B1FA2;
    border-color: #7B1FA2;
}

.btn-primary:hover {
    background-color: #6A1B9A;
    border-color: #6A1B9A;
}

.card-header.bg-primary {
    background-color: #7B1FA2 !important;
}

/* Estilos específicos para esta página */
.progress-bar {
    background-color: #7B1FA2;
}

.tab-content {
    padding-top: 20px;
}

/* Arreglos específicos para el Select2 */
.select2-container--bootstrap-5 .select2-selection--multiple .select2-selection__choice {
    background-color: #7B1FA2;
}

/* Correcciones para textos en el contexto del fondo oscuro */
h2, .lead {
    color: white !important; /* Uso !important para asegurar que este estilo tenga prioridad */
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}