/* Estilos para líneas más oscuras */
.table-dark-lines th, .table-dark-lines td {
    border-color: #a7a6a6; /* Color oscuro */
    border-width: 1px;     /* Grosor de la línea */
    border-style: solid none solid none;
}

/* Opcional: personalización adicional para la tabla */
.table-dark-lines {
    border-collapse: collapse; /* Asegura que las líneas no se dupliquen */
}

.table-dark-lines th {
    background-color: #f8f9fa; /* Fondo claro en el encabezado */
    color: #0b0b0c;            /* Color del texto */
}

.table-dark-lines td {
    background-color: #ffffff; /* Fondo blanco para las celdas */
    padding: 8px;              /* Espaciado interno */
    text-align: center;        /* Alineación del texto */
}

#worker-limit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1050; /* Asegura que esté encima de otros elementos */
}

#worker-limit-modal .modal-content {
    background-color: #fff3cd;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    padding: 20px;
}

#worker-limit-modal .modal-header {
    background-color: #ffeeba;
    border-bottom: 2px solid #ffc107;
    border-radius: 8px 8px 0 0;
}

#worker-limit-modal .modal-header h5 {
    color: #856404;
    font-weight: bold;
}

#worker-limit-modal .modal-body {
    font-size: 1.2rem;
    color: #856404;
}

#worker-limit-modal .modal-footer {
    border-top: 2px solid #ffc107;
}

.btn-secondary {
    background-color: #856404;
    border: none;
    color: white;
}

.btn-secondary:hover {
    background-color: #6c4f04;
    color: white;
}

.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    background: rgba(0, 0, 0, 0.5);
}

.custom-modal .modal-content {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff3cd;
}

.custom-modal .btn-close, .custom-modal .btn-secondary {
    background-color: #856404;
    color: white;
}

input[disabled] {
    color: #ffffff !important; /* Gris más oscuro */
    background-color: #3c3e3f !important; /* Gris claro de fondo (opcional) */
    border-color: #ced4da; /* Borde gris */
    cursor: not-allowed; /* Indicador de no editable */
}
