/* ==========================
   Variables
   ========================== */

:root {
    --texto-principal: #212529;
    --texto-secundario: #6c757d;
    --borde-suave: #e9ecef;
}


/* ==========================
   Base
   ========================== */

body {
    color: var(--texto-principal);
}


/* ==========================
   Dashboard de tareas
   ========================== */

.tareas-hoy {
    max-width: 720px;
    margin: 0 auto;
}

.fecha-actual {
    margin-bottom: 2rem;
    font-weight: 500;
}

.lista-tareas {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tarea-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--borde-suave);
}

.tarea-item:last-child {
    border-bottom: 0;
}

.form-tarea {
    margin: 0;
}

.tarea-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.4;
    cursor: pointer;
}

.tarea-label input[type="checkbox"] {
    width: 1.35rem;
    height: 1.35rem;
    margin: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.tarea-completada {
    color: var(--texto-secundario);
}

.sin-tareas {
    color: var(--texto-secundario);
}


/* ==========================
   Responsive
   ========================== */

@media (max-width: 576px) {
    .tareas-hoy {
        width: 100%;
    }

    .fecha-actual {
        margin-bottom: 1.5rem;
    }

    .tarea-item {
        padding: 1.1rem 0;
    }

    .tarea-label {
        align-items: flex-start;
        gap: 0.9rem;
        font-size: 1.2rem;
        line-height: 1.45;
    }

    .tarea-label input[type="checkbox"] {
        width: 1.6rem;
        height: 1.6rem;
        margin-top: 0.1rem;
    }
}