.botones-modulos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    width: 300px;
}

.botones-modulos button {
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.botones-modulos button:hover {
    background-color: #0056b3;
}

.botones-jefe-proyectos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-left: 0;
    padding-top: 0;
}

.table {
    width: 100%;
    margin-top: 0;
    margin-left: 0;
}

.table td {
    white-space: nowrap;
}

.table td:last-child {
    width: 1%;
    text-align: center;
}

.formulario {
    margin: 20px 0;
}

.formulario form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
}

.formulario label {
    font-weight: bold;
}

.formulario input[type="text"],
.formulario input[type="email"],
.formulario input[type="url"],
.formulario input[type="submit"],
.formulario button {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%;
}


.formulario select {
    padding: 10px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns%3D%22http://www.w3.org/2000/svg%22 width%3D%22292.4%22 height%3D%22292.4%22 viewBox%3D%220 0 292.4 292.4%22%3E%3Cpath fill%3D%22%23000%22 d%3D%22M287 69.3c7.6 7.6 7.6 19.9 0 27.5L163.6 220.3c-7.6 7.6-19.9 7.6-27.5 0L5 96.8c-7.6-7.6-7.6-19.9 0-27.5s19.9-7.6 27.5 0L150.4 187l117.2-117.2c7.6-7.6 19.9-7.6 27.5 0z%22/%3E%3C/svg%3E');
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    background-size: 12px;
}

.formulario select:focus {
    border-color: #007bff;
    outline: none;
}

.formulario textarea {
    width: 100%;
    padding: 8px;
    margin: 5px 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    resize: vertical;
    font-size: 16px;
}

.formulario input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.formulario input[type="submit"]:hover {
    background-color: #0056b3;
}

.formulario button {
    background-color: #6c757d;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    max-width: 500px;
    margin-top: 10px;
}

.formulario button:hover {
    background-color: #5a6268;
}

#editorModal {
    position: fixed;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

#editorModal .modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 50%;
    max-width: 800px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.eliminar-seccion {
    background-color: #C82333 !important;
}


.input-readonly {
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    padding: .375rem .75rem;
    font-weight: bold;
    cursor: not-allowed;
}


.date-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.date-input::-webkit-inner-spin-button,
.date-input::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

