/* ======================================
   GENERAL
====================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{

    background:#edf2f7;

    display:flex;

    justify-content:center;

    align-items:center;

    min-height:100vh;

}

/* ======================================
   CONTAINER
====================================== */

.container{

    width:100%;

    max-width:500px;

    padding:20px;

}

/* ======================================
   HEADER
====================================== */

.header{

    text-align:center;

    margin-bottom:20px;

}

.header h1{

    color:#2e7d32;

    font-size:32px;

}

.header h2{

    color:#555;

    font-size:18px;

    font-weight:normal;

    margin-top:5px;

}
/* ======================================
   DAY SELECTOR
====================================== */

.day-selector{
    display:flex;
    gap:20px;
    margin:20px 0;
}

.day-selector input{
    display:none;
}

.day-card{
    flex:1;
    background:#ffffff;
    border:3px solid #2e7d32;
    border-radius:15px;
    padding:15px;
    cursor:pointer;
    text-align:center;
    transition:.25s;
    box-shadow:0 4px 10px rgba(0,0,0,.08);
}

.day-title{
    display:block;
    font-size:22px;
    font-weight:bold;
    color:#2e7d32;
}

.day-subtitle{
    display:block;
    margin-top:5px;
    font-size:14px;
    color:#666;
}

.day-selector input:checked + .day-card{
    background:#2e7d32;
}

.day-selector input:checked + .day-card .day-title,
.day-selector input:checked + .day-card .day-subtitle{
    color:#ffffff;
}

/* ======================================
   CAMERA
====================================== */

#reader{

    width:100%;

    background:white;

    border-radius:15px;

    overflow:hidden;

    border:3px solid #2e7d32;

    box-shadow:0 8px 20px rgba(0,0,0,.15);

}

/* ======================================
   STATUS
====================================== */

#status{

    margin-top:20px;
    border-radius:15px;
    padding:18px;
    text-align:center;
    font-size:22px;
    font-weight:bold;
    box-shadow:0 5px 15px rgba(0,0,0,.10);
    transition:.25s;

}

/* ======================================
   PARTICIPANT CARD
====================================== */

#participant{

    margin-top:20px;

    background:white;

    border-radius:15px;

    padding:20px;

    box-shadow:0 5px 15px rgba(0,0,0,.10);

}

#participant h3{

    margin-bottom:15px;

    color:#2e7d32;

}

#participant p{

    margin-bottom:10px;

    font-size:17px;

}
/* STATUS COLORS */



/* Default */

#status.status-info{
    background:#ffffff;
    color:#2e7d32;
}

/* Success */

#status.status-success{
    background:#d4edda;
    color:#155724;
}

/* Warning */

#status.status-warning{
    background:#fff3cd;
    color:#856404;
}

/* Error */

#status.status-error{
    background:#f8d7da;
    color:#721c24
}