.title-tab {
    width: 100%;
    overflow-x: hidden;
}

.patients-container {
    padding: 0;
}

.patients-header {
    background-color: #3C3C3C;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 20px;
    width: 100%;
}

.header-icon {
    width: 40px;
    height: 40px;
}

.patients-title {
    margin-left: 10px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.patients-title h1 {
    margin-left: 5px;
    font-size: 25px;
    letter-spacing: 1px;
}

.patients-title i {
    font-size: 40px;
    color: #88F047;
}

.add-patient-btn {
    background-color: #4F4F4F;
    font-weight: 900;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.add-patient-btn i {
    color: #88F047;
    font-size: 27px;
}

.add-patient-btn:hover {
    background-color: #3C3C3C;
}

.search-container {
    position: relative;
    margin-bottom: 20px;
    width: 30%;
    margin-left: auto;
    margin-right: 20px;
}

.search-input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    background-color: #3C3C3C;
    border: 1px solid #6F6F6F;
    border-radius: 5px;
    color: white;
}

.search-icon {
    font-size: 26px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #88F047;
}

.hipertrofit-table {
    margin-left: 20px;
    margin-right: 20px;
    padding: 30px;
    background-color: #3C3C3C;
    border-radius: 5px;
    overflow: hidden;
}

.hipertrofit-table th {
    background-color: #3C3C3C;
    color: #fff;
    padding: 15px;
    text-align: left;
}

.hipertrofit-table td {
    padding: 15px;
    color: #fff;
    border-bottom: 1px solid #3C3C3C;
}

.hipertrofit-table tr:nth-child(even) {
    background-color: #505050;
}

.hipertrofit-table tr:hover {
    background-color: #7d7d7d;
}

.action-buttons {
    display: flex;
    gap: 12px;
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #6F6F6F;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #3C3C3C;
    transition: all 0.2s ease;
}

.action-btn i {
    font-size: 16px;
}

.view-btn i {
    color: #88F047;
}

.delete-btn i {
    color: #F44336;
}

.action-btn:hover {
    background-color: #505050;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.pagination-btn {
    background-color: #3C3C3C;
    color: white;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}

.pagination-btn.active {
    background-color: #88F047;
}

.excel-button {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    border: 2px solid #6F6F6F !important;
    background-color: #3C3C3C !important;
    position: relative !important;
    margin: 10px !important;
    transition: all 0.2s ease !important;
}

.excel-button::before {
    content: '\f1c3' !important;
    /* Código del ícono de Excel de Font Awesome */
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 16px !important;
}

.excel-button:hover {
    background-color: #505050 !important;
}

/* Estilos para el modal */
.modal-content {
    background-color: #3C3C3C !important;
    border-radius: 10px !important;
    color: white !important;
    padding: 20px;
}

.modal-header {
    border: none !important;
    padding-bottom: 0;
}

.modal-title {
    font-size: 24px;
    font-weight: bold;
}

.modal-body {
    padding: 20px 0;
}

.modal-body label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
}

.modal-body input[type="text"],
.modal-body input[type="email"],
.modal-body input[type="date"] {
    width: 100%;
    padding: 10px 15px;
    background-color: #3C3C3C;
    border: 1px solid #6F6F6F;
    border-radius: 5px;
    color: white;
    margin-bottom: 20px;
}


/* Estilos para los radio buttons */
.modal-body input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #6F6F6F;
    border-radius: 50%;
    margin-right: 8px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}

.modal-body input[type="radio"]:checked {
    border-color: #88F047;
}

.modal-body input[type="radio"]:checked::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #88F047;
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modal-body input[type="radio"]+span {
    color: #fff;
    margin-right: 20px;
    cursor: pointer;
}

/* Estilos para los botones del footer */
.modal-footer {
    border: none !important;
    padding-top: 20px;
}

.btn-cancel {
    background-color: #4F4F4F;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
}

.btn-cancel:hover {
    background-color: #953333;
}

.btn-add {
    background-color: #3C3C3C;
    color: white;
    border: 1px solid #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
}

.btn-add:hover {
    background-color: #88F047;
}

.btn-save {
    background-color: #3c3c3c;
    color: white;
    border: 1px solid #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
}

.btn-save:hover {
    background-color: #6ac235;
}

.btn-info {
    background-color: #3c3c3c;
    color: white;
    border: 1px solid #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
}

.btn-info:hover {
    background-color: #5CFFF9;
}

/* Botón de cerrar (X) */
.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: none;
    border: none;
    color: #88F047;
    font-size: 24px;
    cursor: pointer;
}

.nav-link.user-profile {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.nav-link.user-profile:hover {
    background-color: #363636;
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 25px;
    padding-bottom: 10px;
}

.profile-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: #88F047;
    padding: 2px;
}

.profile-text {
    display: flex;
    flex-direction: column;
    font-size: 12px !important;
}

.profile-name {
    color: white;
    font-weight: bold;
    font-size: 12px !important;
}

.profile-role {
    color: #88F047;
    font-size: 12px;
}

.notes-container {
    padding: 0;
}

/* Sobrescribir el color del ícono para notas */
.notes-container .header-icon {
    color: #FF962E !important;
}

/* Ajustar el ancho de las columnas de la tabla de notas */
.notes-container .hiper-table th:first-child {
    width: 25%;
}

.notes-container .hiper-table th:nth-child(2) {
    width: 60%;
}

.notes-container .hiper-table th:last-child {
    width: 15%;
}

/* Estilos para el texto de las notas */
.notes-container .hiper-table td:nth-child(2) {
    white-space: pre-line;
    line-height: 1.4;
}

/* Estilos para la sección de ejercicios */
.exercises-container {
    padding: 0;
}

.exercises-container .header-icon {
    color: #88F047 !important;
}

/* Ajustar el ancho de las columnas de la tabla de ejercicios */
.exercises-container .hiper-table th:first-child {
    width: 20%;
}

.exercises-container .hiper-table th:nth-child(2) {
    width: 40%;
}

.exercises-container .hiper-table th:nth-child(3) {
    width: 20%;
}

.exercises-container .hiper-table th:last-child {
    width: 20%;
}

/* Estilos para el modal de video */
#videoModal .modal-content {
    background-color: #3C3C3C;
    border: none;
}

#videoModal .modal-header {
    border-bottom: 1px solid #4F4F4F;
}

#videoModal .modal-title {
    color: white;
}

#videoModal .modal-body {
    padding: 0;
}

#videoModal .btn-secondary {
    background-color: #4F4F4F;
    border: none;
    padding: 10px 20px;
    width: 100%;
}

#videoModal .btn-secondary:hover {
    background-color: #3C3C3C;
}

/* Estilos específicos para notas de ejercicios */
.notes-container .hiper-table th:first-child {
    width: 10%;
}

.notes-container .hiper-table th:nth-child(2) {
    width: 75%;
}

.notes-container .hiper-table th:last-child {
    width: 15%;
}

/* Estilos para el texto de las notas */
.notes-container .hiper-table td:nth-child(2) {
    white-space: pre-line;
    line-height: 1.4;
}

/* Estilos para la sección de recursos */
.assets-container {
    padding: 0;
}

.assets-container .header-icon {
    color: #5CFFF9 !important;
}

/* Switch personalizado */
.switch-container {
    padding: 20px;
    background-color: #3C3C3C;
    margin: -20px 0 20px 0;
}

.switch-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.switch-wrapper input[type="checkbox"] {
    appearance: none;
    width: 50px;
    height: 24px;
    background-color: #4F4F4F;
    border-radius: 12px;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}

.switch-wrapper input[type="checkbox"]:checked {
    background-color: #88F047;
}

.switch-wrapper input[type="checkbox"]::before {
    content: '';
    width: 20px;
    height: 20px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.switch-wrapper input[type="checkbox"]:checked::before {
    transform: translateX(26px);
}

.switch-label {
    color: white;
    font-size: 14px;
}

/* Ajustar el ancho de las columnas de la tabla de recursos */
.assets-container .hiper-table th:first-child {
    width: 20%;
}

.assets-container .hiper-table th:nth-child(2) {
    width: 35%;
}

.assets-container .hiper-table th:nth-child(3) {
    width: 25%;
}

.assets-container .hiper-table th:last-child {
    width: 20%;
}

/* Estilos para el modal de contenido */
#contentModal .modal-content {
    background-color: #3C3C3C;
    border: none;
}

#contentModal .modal-header {
    border-bottom: 1px solid #4F4F4F;
}

#contentModal .modal-title {
    color: white;
}

#contentModal .close {
    color: white;
}

#contentModal .modal-body {
    padding: 20px;
}

#contentModal .embed-responsive {
    border-radius: 5px;
    overflow: hidden;
}

/* Estilos para la sección de productos */
.products-container {
    padding: 0;
}

.products-container .header-icon {
    color: #88F047 !important;
}

/* Ajustes para la tabla de productos */
.products-container .hiper-table th:first-child {
    width: 5%;
}

.products-container .hiper-table th:nth-child(2) {
    width: 20%;
}

.products-container .hiper-table th:nth-child(3) {
    width: 15%;
}

.products-container .hiper-table th:nth-child(4) {
    width: 8%;
}

.products-container .hiper-table th:nth-child(5) {
    width: 20%;
}

.products-container .hiper-table th:nth-child(6),
.products-container .hiper-table th:nth-child(7) {
    width: 10%;
}

.products-container .hiper-table th:last-child {
    width: 12%;
}

/* Estilos para los elementos dentro de la tabla */
.product-objective {
    font-size: 12px;
    color: #88F047;
    margin-top: 4px;
    font-weight: bold;
}

.price-column {
    font-weight: bold;
    color: #88F047;
}

.muscles-list {
    font-size: 11px;
    list-style: none;
    padding-left: 0;
    line-height: 1.4;
    margin: 0;
}

.muscles-list li {
    color: #ffffff;
    padding: 2px 0;
}

/* Estilos para los colores de prioridad */
.priority-1 {
    background-color: #ceffce;
}

.priority-2 {
    background-color: #fdfcd9;
}

.priority-3 {
    background-color: #ffe0ca;
}

/* Estilos para la sección de cupones */
.coupons-container {
    padding: 0;
}

.coupons-container .header-icon {
    color: #FF962E !important;
}

/* Ajustes para la tabla de cupones */
.coupons-container .hiper-table th:first-child {
    width: 20%;
}

.coupons-container .hiper-table th:nth-child(2) {
    width: 15%;
}

.coupons-container .hiper-table th:nth-child(3) {
    width: 15%;
}

.coupons-container .hiper-table th:nth-child(4) {
    width: 15%;
}

.coupons-container .hiper-table th:nth-child(5) {
    width: 20%;
}

.coupons-container .hiper-table th:last-child {
    width: 15%;
}

/* Estilos para elementos específicos */
.coupon-code {
    font-weight: bold;
    color: #FF962E;
}

.discount-column {
    font-weight: bold;
    color: #88F047;
}

.uses-column {
    color: #5CFFF9;
}

/* Estilos para la sección del blog */
.blog-container {
    padding: 0;
}

.blog-container .header-icon {
    color: #5CFFF9 !important;
}

/* Ajustes para la tabla del blog */
.blog-container .hiper-table th:first-child {
    width: 12%;
}

.blog-container .hiper-table th:nth-child(2) {
    width: 25%;
}

.blog-container .hiper-table th:nth-child(3) {
    width: 15%;
}

.blog-container .hiper-table th:nth-child(4) {
    width: 20%;
}

.blog-container .hiper-table th:nth-child(5) {
    width: 13%;
}

.blog-container .hiper-table th:last-child {
    width: 15%;
}

/* Estilos para elementos específicos */
.date-column {
    color: #5CFFF9;
    font-weight: bold;
}

.title-column {
    color: white;
    font-weight: bold;
}

.tags-column {
    color: #FF962E;
    font-size: 12px;
}

/* Badges de status */
.status-badge {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: lowercase;
}

.status-badge.status-publicada {
    background-color: rgba(136, 240, 71, 0.2);
    color: #88F047;
}

.status-badge.status-pausada {
    background-color: rgba(255, 150, 46, 0.2);
    color: #FF962E;
}

/* Estilos para el editor del blog */
.blog-editor-container {
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

.editor-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.editor-content {
    display: flex;
    gap: 20px;
    padding: 20px;
    height: calc(100vh - 80px);
}

.editor-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.editor-sidebar {
    width: 300px;
    background-color: #3C3C3C;
    border-radius: 10px;
    padding: 20px;
}

/* Inputs personalizados */
.hipertrofit-input {
    width: 100%;
    padding: 12px 15px;
    background-color: #3C3C3C;
    border: 1px solid #4F4F4F;
    border-radius: 8px;
    color: white;
    font-size: 14px;
}

.hipertrofit-input:focus {
    border-color: #88F047;
    outline: none;
}

.hipertrofit-select {
    width: 100%;
    padding: 12px 15px;
    background-color: #3C3C3C;
    border: 1px solid #4F4F4F;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 20px;
}

.hipertrofit-select:focus {
    border-color: #88F047;
    outline: none;
}

/* Secciones del sidebar */
.sidebar-section {
    margin-bottom: 20px;
}

.sidebar-section h3 {
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Sección de imagen */
.image-upload-section {
    margin-top: 20px;
}

.preview-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px dashed #4F4F4F;
    padding: 5px;
}

.preview-image:hover {
    border-color: #88F047;
}

/* Editor de texto */
.editor-wrapper {
    flex: 1;
    background-color: #3C3C3C;
    border-radius: 8px;
    overflow: hidden;
}

.sun-editor {
    background-color: #3C3C3C !important;
    border: none !important;
}

.sun-editor-editable {
    background-color: #2C2C2C !important;
    color: white !important;
}

/* Estilos para las cards de ejercicios */
.exercise-card {
    background-color: #3C3C3C;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
}

.exercise-card.new-exercise {
    border: 2px dashed #4F4F4F;
}

.exercise-header {
    background-color: #2C2C2C;
    padding: 15px;
    border-bottom: 1px solid #4F4F4F;
}

.exercise-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-weight: bold;
}

.exercise-actions {
    display: flex;
    gap: 8px;
}

.exercise-select {
    display: flex;
    align-items: center;
    gap: 10px;
}

.exercise-body {
    padding: 15px;
}

.exercise-form {
    display: flex;
    flex-direction: column;
    /* gap: 15px; */
}

.exercise-form label {
    color: #888;
    font-size: 12px;
    margin-bottom: 5px;
}

.form-row {
    flex-wrap: nowrap !important;
    gap: 10px;
    /* margin-bottom: 10px; */
    margin-left: 0px !important;
    margin-right: 0px !important;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.add-exercise-btn {
    background-color: #88F047;
    color: #2C2C2C;
    border: none;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-exercise-btn:hover {
    background-color: #6ac235;
}

.note-btn {
    background-color: #FF962E;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.note-btn:hover {
    background-color: #e88420;
}

/* Flecha de biserie */
/* .biserie-arrow {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 30px;
    height: 30px;
    background-color: #88F047;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    transform: translateY(-50%);
    z-index: 2;
    transition: background-color 0.3s ease;
} */

/* .biserie-arrow:hover {
    background-color: #6ac235;
} */

/* Ajuste para la card que tiene la flecha */
.sortable-item {
    position: relative;
}

/* Estilos para semanas y días */
.day-item,
.week-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    padding: 8px;
    background-color: #3C3C3C;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.day-item:hover,
.week-item:hover {
    background-color: #4F4F4F;
}

.day_checkbox,
.week_checkbox {
    appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #88F047;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.day_checkbox:checked,
.week_checkbox:checked {
    background-color: #88F047;
}

.day_checkbox:checked::before,
.week_checkbox:checked::before {
    content: '✓';
    position: absolute;
    color: #2C2C2C;
    font-size: 12px;
    font-weight: bold;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.day-link,
.week-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    flex: 1;
}

.day-link:hover,
.week-link:hover {
    color: #88F047;
    text-decoration: none;
}

.current-day {
    color: #88F047 !important;
    font-weight: bold;
}

.current-week {
    color: #88F047 !important;
    font-weight: bold;
}

/* Estilos para los títulos de sección */
.row h6 {
    color: white;
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 15px;
}

/* Estilos para los contenedores */
#related_weeks_container,
#related_days_container {
    padding: 10px;
    background-color: #2C2C2C;
    border-radius: 10px;
    min-height: 100px;
}

/* Estilos para la sección de avisos */
.notices-container {
    padding: 0;
}

.notices-container .header-icon {
    color: #FF962E !important;
}

/* Ajustes para la tabla de avisos */
.notices-container .hiper-table th:first-child {
    width: 10%;
}

.notices-container .hiper-table th:nth-child(2) {
    width: 50%;
}

.notices-container .hiper-table th:nth-child(3) {
    width: 15%;
}

.notices-container .hiper-table th:last-child {
    width: 25%;
}

/* Badges de status */
.status-badge {
    padding: 5px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    text-transform: lowercase;
}

.status-badge.status-activo {
    background-color: rgba(136, 240, 71, 0.2);
    color: #88F047;
}

.status-badge.status-inactivo {
    background-color: rgba(244, 67, 54, 0.2);
    color: #f44336;
}

/* Ajustes para los botones de acción */
.notices-container .action-buttons {
    display: flex;
    gap: 8px;
    justify-content: flex-start;
}

.notices-container .action-btn {
    padding: 8px;
    border-radius: 8px;
    border: none;
    background-color: #4F4F4F;
    cursor: pointer;
    transition: all 0.3s ease;
}

.notices-container .action-btn:hover {
    background-color: #3C3C3C;
}

/* Estilos para los botones de rutina */
.routine-notes-btn,
.save-routine-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.routine-notes-btn {
    background-color: #5CFFF9;
    color: #2C2C2C;
}

.routine-notes-btn:hover {
    background-color: #4ad9d4;
}

.save-routine-btn {
    background-color: #88F047;
    color: #2C2C2C;
}

.save-routine-btn:hover {
    background-color: #6ac235;
}

/* Estilos para la configuración */
.configuration-header {
    display: flex;
    padding: 10px;
    background-color: #3C3C3C;
    border-radius: 8px 8px 0 0;
    color: white;
    font-weight: bold;
}

.configuration-body {
    height: 69vh;
    overflow-y: auto;
    background-color: #2C2C2C;
    border-radius: 0 0 8px 8px;
    padding: 10px;
}

/* Estilos para los títulos de sección */
h6 {
    color: white;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Ajustes para los contenedores de semanas y días */
#related_weeks_container,
#related_days_container {
    background-color: #3C3C3C;
    border-radius: 8px;
    padding: 15px;
}

/* Estilos para la página de configuración */
.configuration-container {
    padding: 0;
}

.save-indicator {
    display: flex;
    align-items: center;
}

.save-icon {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.save-icon.save-success {
    opacity: 1;
}

/* Contenedor de semanas */
.weeks-container {
    display: flex;
    gap: 20px;
    padding: 20px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: thin;
    scrollbar-color: #88F047 #2C2C2C;
}

.weeks-container::-webkit-scrollbar {
    height: 8px;
}

.weeks-container::-webkit-scrollbar-track {
    background: #2C2C2C;
    border-radius: 4px;
}

.weeks-container::-webkit-scrollbar-thumb {
    background: #88F047;
    border-radius: 4px;
}

/* Bloque de semana */
.week-block {
    background-color: #3C3C3C;
    border-radius: 8px;
    padding: 15px;
}

.week-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #4F4F4F;
}

.week-title {
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.week-actions {
    display: flex;
    gap: 8px;
}

/* Tabla de semana */
.week-table-container {
    overflow-x: auto;
}

.week-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 4px;
}

.week-table td {
    padding: 8px !important;
    background-color: #2C2C2C;
    color: white;
}

.week-table td:first-child {
    border-radius: 4px 0 0 4px;
}

.week-table td:last-child {
    border-radius: 0 4px 4px 0;
}

/* Input error */
.input-error {
    background-color: rgba(244, 67, 54, 0.1) !important;
    border: 1px solid rgba(244, 67, 54, 0.5) !important;
}

.input-error:focus {
    box-shadow: 0 0 0 0.2rem rgba(244, 67, 54, 0.25) !important;
}