.dependencias-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.dependencias-header input[type="text"] {
    padding: 8px;
    width: 250px;
    border-radius: 4px;
    border: none;
}

.dependencias-header button {
    background-color: #7289da;
    color: #fff;
    padding: 8px 14px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    margin-left: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: #2c2f33;
    border-radius: 6px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #444;
}

th {
    background-color: #23272a;
}

tr:hover {
    background-color: #3a3d41;
}

.acciones button {
    background-color: #7289da;
    color: white;
    border: none;
    padding: 6px 10px;
    margin-right: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.acciones button.eliminar {
    background-color: #e74c3c;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-contenido {
    background-color: #2f3338;
    padding: 30px;
    border-radius: 8px;
    width: 400px;
    color: #fff;
    display: flex;
    flex-direction: column;
}

.modal-contenido h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 22px;
    text-align: center;
}

.modal-contenido input {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 4px;
    border: none;
    font-size: 15px;
    width: 100%;
}

.modal-botones {
    display: flex;
    justify-content: space-between;
}

.modal-botones button {
    padding: 10px 16px;
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

.modal-botones button[type="submit"] {
    background-color: #43b581;
    color: #fff;
}

.modal-botones button[type="button"] {
    background-color: #e74c3c;
    color: #fff;
}
