﻿.tasks-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #2C2C3E;
    border-radius: 12px;
    color: #F6CE98;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

    .tasks-container h1 {
        text-align: center;
        font-size: 28px;
        margin-bottom: 20px;
    }

    /* Tabla de tareas */
    .tasks-container table {
        width: 100%;
        border-collapse: collapse;
        margin-top: 15px;
        background: #3A3A4F;
        border-radius: 8px;
        overflow: hidden;
    }

    .tasks-container th,
    .tasks-container td {
        padding: 12px;
        text-align: center;
        border-bottom: 1px solid #555;
    }

    .tasks-container th {
        background: #ED733F;
        color: #FFF;
    }

/* Estados de las tareas */
.status-pending {
    color: #F6CE98;
    font-weight: bold;
}

.status-progress {
    color: #FFD700;
    font-weight: bold;
}

.status-done {
    color: #4CAF50;
    font-weight: bold;
}
