/* Estilos personalizados de Juan */

/* Centrado vertical */
.full-height {
    height: 100vh;
}

/* Tarjeta del login */
.login-card {
    max-width: 380px;
    width: 100%;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Fondo general */
body {
    margin: 0;
    padding: 0;
    background: url("https://ikonos.storeinjapan.com/fondos/S_P__20_.jpg") no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
}

/* Títulos */
h2, h3, h4 {
    font-weight: 600;
}
h4{
    color: white;
}
/* ----------------------------- */
/* DASHBOARD COMO TARJETAS */
/* ----------------------------- */

.dashboard-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.dashboard-list a {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}
.dashboard-list a {
    min-height: 180px;      /* altura uniforme */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;    /* centra ícono + texto */
}

/* Hover */
.dashboard-list a:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}

/* Íconos dentro de las tarjetas */
.dashboard-list a img {
    width: 48px;
    height: 48px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------- */
/* FORMULARIOS */
/* ----------------------------- */

.form-box {
    max-width: 600px;
    margin: auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Tabla del historial */
.table-notas td {
    vertical-align: top;
}

.note-title {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Lista de tareas */
.task-done {
    text-decoration: line-through;
    color: #6c757d;
}

.task-box {
    max-width: 800px;
    margin: auto;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}