body{
    margin:0;
    background:#f4f7fb;
    font-family:
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
}

/* LOGIN */

.login{
    height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
}

.login__card{
    width:320px;
    background:white;
    padding:30px;
    border-radius:20px;
    box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

.login__title{
    text-align:center;
    font-size:32px;
    font-weight:bold;
    color:#1e3a8a;
    margin-bottom:25px;
}

.login__input{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:10px;
    margin-bottom:15px;
    box-sizing:border-box;
    font-size:18px;
}

.login__button{
    width:100%;
    background:#1e3a8a;
    color:white;
    border:none;
    padding:12px;
    border-radius:10px;
    cursor:pointer;
    font-size:18px;
}

/* DASHBOARD */

.dashboard__header{
    background:#1e3a8a;
    color:white;
    padding:15px;
    font-size:22px;
    font-weight:bold;
}

.dashboard__container{
    padding:5px;
}

.dashboard__stats-grid{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(180px,1fr));
    gap:10px;
}

.dashboard__stat-card{
    background:rgb(253, 247, 74);
    padding:10px 12px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 4px 10px rgba(0,0,0,0.1);
}
.dashboard__stat-card h2{
    margin:0;
    font-size:14px;
    font-weight:600;
}

.dashboard__stat-card p{
    margin:5px 0 0 0;
    font-size:18px;
    font-weight:bold;
}
.dashboard__filter-card{
    background:white;
    padding:15px;
    border-radius:15px;
    margin-top:15px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:15px;
}

.dashboard__filter-button{
    background:#1e3a8a;
    color:white;
    border:none;
    padding:12px 16px;
    border-radius:10px;
    cursor:pointer;
    font-weight:bold;

    flex:1;
    min-width:140px;
}

/* TASK CARD DASHBOARD */

.task-row{
    background:white;
    border-radius:12px;
    padding:12px 15px;
    margin-bottom:10px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
    box-shadow:0 3px 10px rgba(0,0,0,0.08);
    border-left:5px solid #1e3a8a;
}

/* LEFT */

.task-row__left{
    flex:1;
}

.task-row__title{
    font-size:18px;
    font-weight:bold;
    color:#1e3a8a;
    margin-bottom:4px;
}

.task-row__machine{
    color:#666;
    font-size:13px;
}

/* CENTER */

.task-row__center{
    flex:1.2;
}

.task-row__service{
    font-weight:bold;
    color:#111;
    margin-bottom:4px;
}

.task-row__week{
    color:#444;
    font-size:13px;
    margin-bottom:3px;
}

.task-row__range{
    color:#777;
    font-size:12px;
}

/* RIGHT */

.task-row__right{
    min-width:100px;
    text-align:right;
}

/* BADGES */

.task-row__badge{
    padding:6px 14px;
    border-radius:20px;
    color:white;
    font-size:12px;
    font-weight:bold;
}

.task-row__badge--pending{
    background:orange;
}

.task-row__badge--completed{
    background:green;
}


.hidden{
    display:none;
}