/* =========================================
   RESET
========================================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    background:#F6F6F4;
    font-family:"SF Pro Display",-apple-system,BlinkMacSystemFont,sans-serif;
    color:#1D1D1F;
}

/* =========================================
   CONTAINER
========================================= */
.container{
    width:390px;
    margin:18px auto;
    padding:20px;
    border-radius:26px;
    background:rgba(255,255,255,.65);
    backdrop-filter:blur(24px);
    -webkit-backdrop-filter:blur(24px);
    border:1px solid rgba(255,255,255,.45);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

/* =========================================
   TITLES
========================================= */
h1{
    font-size:42px;
    font-weight:700;
    margin-bottom:4px;
}

.subtitle{
    font-size:17px;
    color:#6E6E73;
    margin-bottom:24px;
}

.screen-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:14px;
}

/* =========================================
   BACK BUTTON
========================================= */
.back-btn{
    display:inline-block;
    width:auto;
    color:#FF5C01;
    font-size:14px;
    font-weight:500;
    cursor:pointer;
    margin-bottom:8px;
    user-select:none;
    transition:.2s;
}

.back-btn:hover{
    opacity:.65;
}

/* =========================================
   SECTIONS
========================================= */
.section{
    margin-bottom:14px;
}

label{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#444;
    margin-bottom:5px;
}

/* =========================================
   DATE
========================================= */
.date-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 14px;
    border-radius:14px;
    background:rgba(255,255,255,.75);
    border:1px solid rgba(0,0,0,.05);
    cursor:pointer;
    transition:.2s;
}

.date-card:hover{
    background:white;
}

.change-text{
    color:#FF5C01;
    font-size:13px;
}

/* =========================================
   TIME
========================================= */
.time-selector{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
}

.time-btn{
    margin:0;
    padding:9px 0;
    border:none;
    border-radius:12px;
    background:#EFEFEF;
    color:#555;
    font-size:13px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
}

.time-btn.selected{
    background:#FEA500;
    color:#fff;
}

.time-btn:hover{
    background:#FFD15A;
}

/* =========================================
   INPUTS
========================================= */
.two-column{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.input-group{
    text-align:center;
}

.input-group input{
    width:100%;
    height:46px;
    border:none;
    border-radius:14px;
    background:#fff;
    text-align:center;
    font-size:20px;
    outline:none;
    box-shadow:inset 0 0 0 1px rgba(0,0,0,.06);
}

.input-group input:focus{
    box-shadow:inset 0 0 0 2px #FF5C01;
}

small{
    display:block;
    margin-top:4px;
    color:#777;
    font-size:12px;
}

/* Pace (read only) */
#paceMinutes,
#paceSeconds{
    background:#F4F4F5;
    color:#666;
    font-weight:600;
    cursor:default;
}

/* =========================================
   BUTTONS
========================================= */
button{
    width:100%;
    height:52px;
    border:none;
    border-radius:16px;
    background:#FF5C01;
    color:white;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:.2s;
    margin-top:12px;
}

button:hover{
    background:#FEA500;
}

.save-container{
    display:flex;
    justify-content:center;
    margin-top:16px;
}

.save-btn{
    width:190px;
    height:44px;
    border-radius:14px;
    font-size:16px;
}

/* =========================================
   MOBILE
========================================= */
@media (max-width:450px){

    .container{
        width:95%;
        padding:18px;
        margin:12px auto;
    }

    h1{
        font-size:36px;
    }

    .screen-title{
        font-size:26px;
    }
}
.label-unit{

    font-size:13px;

    font-weight:500;

    color:#7A7A7A;

}