/* Panel principal */
/*.content-panel {
    display: block;     
    padding: 20px;
}*/

.content-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Caja principal para edición */
.edit-users-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    width: 100%;         /* ocupar todo el ancho del panel central */
    box-sizing: border-box;
    margin-bottom: 20px; /* separación con otros elementos debajo */
}

.edit-users-box h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Tablas de usuarios y proyectos */
.edit-users-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px; /* espacio entre filas */
}

.edit-users-table th {
    background-color: #007bff;
    color: white;
    padding: 12px;
    text-align: left;
    border-radius: 12px 12px 0 0; /* bordes superiores redondeados */
}

.edit-users-table td {
    background: #f9f9f9;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

.edit-users-table td:last-child {
    display: flex;
    justify-content: center;  /* centra horizontalmente */
    align-items: center;      /* centra verticalmente */
    gap: 8px;                 /* espacio entre botones */
}

/* Botones de acción: base */
.btn-edit,
.btn-delete,
.btn-cancel {
    display: inline-block;
    padding: 6px 12px;
    margin-right: 6px;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    cursor: pointer;
    border: none;
    font-weight: bold;
    font-size: 14px;
    transition: background-color 0.2s;
}

/* Botón Editar */
.btn-edit {
    background-color: #007bff;
}
.btn-edit:hover {
    background-color: #0056b3;
}

/* Botón Eliminar */
.btn-delete {
    background-color: #dc3545;
}
.btn-delete:hover {
    background-color: #a71d2a;
}

/* Botón Cancelar */
.btn-cancel {
    background-color: #6c757d;
}
.btn-cancel:hover {
    background-color: #565e64;
}
