.client-calendar{
    width:100%;
    margin-bottom:30px;
}

/* ==========================================
   Nadpis
========================================== */

.calendar-title{
    margin-bottom:25px;
}

.calendar-title h2 {
	font-family: "Oswald", sans-serif;
    display:flex;
    align-items: flex-end;
    gap:10px;
    margin:0;
    font-size:24px;
    font-weight:600;
	text-transform: uppercase;
	color: #000;
}

.separator-custom {
	width: 1px;
	display: flex;
	height: 25px;
	position: relative;
	background: rgb(201, 201, 201);
}


.calendar-title .calendar-date {
	font-family: "Oswald", sans-serif;
    display:flex;
    align-items:center;
    gap:15px;
    margin:0;
    font-size:18px;
    font-weight:600;	
	text-transform: uppercase;
	color: #000;
}

/* ==========================================
   Riadok kalendára
========================================== */

.calendar-row{
    display:flex;
    align-items:center;
    gap:18px;
    width:100%;
}

/* ==========================================
   Šípky
========================================== */

.calendar-arrow{

    width:46px;
    min-width:46px;
    height:120px;
	
	color: #000;	

    display:flex;
    justify-content:center;
    align-items:center;

    border:2px solid #000;
    border-radius:15px;

    background:transparent;

    cursor:pointer;

	font-weight: 400;

    font-size:22px;

    transition:.25s;

    flex-shrink:0;

}

.calendar-arrow:hover{

    transform:scale(1.05);
	background: #000;
	color: #fff;

}

/* ==========================================
   Dni
========================================== */

.calendar-days{

    flex:1;

    display:grid;

    grid-template-columns:repeat(7,1fr);

    gap:18px;

}

.calendar-day{

    height:120px;

    background:#fff;

    border-radius:20px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    cursor:pointer;

    transition:.25s;

}

.calendar-day:hover{

    transform:translateY(-4px);

}

.calendar-day.active{

    background:#111;
    color:#fff;

}

.day-name{

    font-size:15px;

    font-weight:600;

    margin-bottom:12px;

}

.day-number{

    font-size:34px;

    font-weight:700;

    line-height:1;

}

.day-dot{

    width:12px;

    height:12px;

    border-radius:50%;

    margin-top:14px;

}

.day-dot.training{

	border:2px solid #34d399;
    background:transparent;

}

.day-dot.training.completed{

    background:#34d399;
    border:2px solid #34d399;

}

.day-dot.training.missed{

    background:#ef4444;
    border:2px solid #ef4444;

}

.day-dot.rest{

    background:#FFD43B;

}

.day-dot.none{

    background:#d1d5db;

}

/* ==========================================
   Editor dňa (tréner)
========================================== */

.su-training-card.su-day-editor{

    display:block;
    overflow:visible;
    background:#fff;
    border-radius:20px;
    padding:24px;

}

.su-day-editor h2{

    font-family:"Oswald", sans-serif;
    font-size:22px;
    font-weight:600;
    text-transform:uppercase;
    color:#000;
    margin:0 0 16px;

}

.su-editor-label{

    display:block;
    font-family:"Manrope", sans-serif;
    font-size:13px;
    font-weight:600;
    color:#585c6b;
    margin:14px 0 6px;

}

.su-day-editor select,
.su-day-editor input[type="text"],
.su-day-editor input[type="number"]{

    width:100%;
    padding:10px 12px;
    border:1px solid #e2e2e6;
    border-radius:10px;
    font-family:"Manrope", sans-serif;
    font-size:14px;
    color:#000;
    box-sizing:border-box;

}

.su-editor-exercise-row{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr auto;
    gap:8px;
    margin-bottom:8px;
    align-items:center;

}

.su-editor-remove-exercise{

    width:28px;
    height:28px;
    border-radius:50%;
    border:1px solid #e2e2e6;
    background:#fff;
    cursor:pointer;
    font-size:16px;
    line-height:1;
    color:#585c6b;

}

.su-editor-add-exercise{

    margin-top:6px;
    background:transparent;
    border:1px dashed #b7b9c3;
    border-radius:10px;
    padding:8px 14px;
    font-family:"Manrope", sans-serif;
    font-size:13px;
    font-weight:600;
    color:#000;
    cursor:pointer;

}

.su-editor-actions{

    display:flex;
    gap:10px;
    margin-top:20px;

}

.su-editor-save{

    font-family:"Oswald", sans-serif;
    text-transform:uppercase;
    padding:12px 30px;
    border:none;
    border-radius:12px;
    background:#111;
    color:#fff;
    font-size:14px;
    font-weight:600;
    cursor:pointer;

}

.su-editor-delete{

    font-family:"Oswald", sans-serif;
    text-transform:uppercase;
    padding:12px 20px;
    border:1px solid #ef4444;
    border-radius:12px;
    background:#fff;
    color:#ef4444;
    font-size:13px;
    font-weight:600;
    cursor:pointer;

}

.su-editor-view-training{

    display:inline-flex;
    align-items:center;
    font-family:"Oswald", sans-serif;
    text-transform:uppercase;
    padding:12px 20px;
    border:1px solid #111;
    border-radius:12px;
    background:#fff;
    color:#000;
    font-size:13px;
    font-weight:600;
    text-decoration:none;
    cursor:pointer;

}

.su-editor-view-training:hover{

    background:#111;
    color:#fff;

}

.su-editor-status{

    margin-top:10px;
    font-family:"Manrope", sans-serif;
    font-size:13px;
    color:#585c6b;

}

/* ==========================================
   Mobil
========================================== */

@media (max-width:768px){

    .calendar-title h2{

        font-size:19px;
        flex-wrap:wrap;

    }

    .calendar-title .calendar-date{

        font-size:14px;

    }

    .calendar-row{

        gap:10px;

    }

    .calendar-arrow{

        width:32px;
        min-width:32px;
        height:90px;
        font-size:16px;
        border-radius:12px;

    }

    .calendar-days{

        grid-template-columns:repeat(7, 56px);
        gap:8px;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        scrollbar-width:none;
        padding-bottom:2px;

    }

    .calendar-days::-webkit-scrollbar{

        display:none;

    }

    .calendar-day{

        height:90px;

    }

    .day-name{

        font-size:13px;
        margin-bottom:8px;

    }

    .day-number{

        font-size:22px;

    }

    .su-day-editor{

        padding:18px;

    }

    .su-editor-exercise-row{

        grid-template-columns:1fr 1fr 1fr auto;
        row-gap:8px;

    }

    .su-editor-exercise-name{

        grid-column:1 / -1;

    }

    .su-editor-actions{

        flex-wrap:wrap;

    }

    .elementor-page-title .elementor-heading-title{

        line-height:1.3em;

    }

}

.su-mobile-break{

    display:none;

}

@media (max-width:768px){

    .su-mobile-break{

        display:block;

    }

}