/* crear_perfil.css */

/* Estilos generales */
body {
    background-color: #f8f9fa;
}

h1, h2 {
    color: #343a40;
}

/* Estilos para las cards seleccionadas */
#selected-cards .card {
    width: 18rem;
    margin: 0.5rem;
    cursor: pointer;
    position: relative;
}

#selected-cards .card .delete-btn {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: transparent;
    border: none;
    color: red;
    font-size: 1.2rem;
    display: none;
}

#selected-cards .card:hover .delete-btn {
    display: block;
}

/* Estilos para los filtros */
.form-group label {
    font-weight: bold;
}

#clear-filters {
    float: left;
}

/* Estilos para los botones */
.btn-success {
    color: white;
}

/* Responsive table */
table.dataTable thead th {
    background-color: #343a40;
    color: white;
}

/* Ajustes para el modal */
.modal-body {
    white-space: pre-wrap; /* Preserva saltos de línea */
}
