body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background: #f5f5f5;
}

h1 {
    margin-bottom: 1em;
}

header, .header-panel {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
}

.header-panel a.btn {
    background: #0073e6;
    color: white;
    padding: 8px 12px;
    margin-right: 10px;
    text-decoration: none;
    border-radius: 4px;
}

.header-panel .btn-logout {
    background: #bbb;
    color: #000;
}

.filter-form {
    margin-bottom: 1em;
}

.filter-form input[type="text"],
.filter-form select {
    padding: 4px;
    margin-right: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

table th, table td {
    padding: 8px;
    border: 1px solid #ccc;
}

table th {
    background: #eee;
}

.error-message {
    background: #f2dede;
    padding: 10px;
    color: #a94442;
    margin-bottom: 1em;
    border: 1px solid #ebccd1;
    border-radius: 4px;
}

.login-container {
    max-width: 300px;
    margin: 50px auto;
    background: white;
    padding: 20px;
    border-radius: 4px;
}

.login-container form label {
    display: block;
    margin-top: 1em;
}

.login-container form input {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
}

button {
    margin-top: 1em;
    padding: 8px 16px;
    background: #0073e6;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background: #005bb5;
}

form a {
    display: inline-block;
    margin-top: 1em;
}

/* Clases para resaltar filas segun condición */
.mail-failed {
    background-color: #f8d5d5; /* rojo claro */
}

.not-verified {
    background-color: #ffe2af; /* mandarina */
}

.verified {
    background-color: #d3fbd8; /* verde claro */
}

/* ================================= */
/* NUEVAS CLASES PARA ELIMINAR INLINES */
/* ================================= */
/* Reemplaza style="display:inline;" en el form */
.delete-form {
    display: inline;
}

/* Reemplaza style del button (fondo none, etc.) */
.delete-button {
    background: none;
    border: none;
    color: #0073e6;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
}