/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/ClientSide/css.css to edit this template
*/
/*
    Created on : 28. 6. 2025, 9:34:09
    Author     : egrat
*/

.offcanvas-form-body {
    position: relative; /* důležité pro správné pozicování */
}

.tempus-dominus-widget {
    z-index: 2000 !important; /* nad offcanvas */
}
.btn-eye {
    background:none;
    border:none
}
.agreement-overlay{
    display: flex;
    z-index: 10000;
    width: 100vw;
    height: 100vh;
    position: absolute;
    left:0;
    top:0;
    justify-content: center;
    align-items: center;
}

.agreement-box{
    z-index: 100001;
    width: 400px;
    max-width: 95vw;
    max-height: 95vh;
    height: 200px;
    background-color: white;
    position: absolute;
    border-radius: 7px;
    background: #e0e0e0;
    box-shadow:  20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff;
}
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    20%, 60% {
        transform: translateX(-10px);
    }
    40%, 80% {
        transform: translateX(10px);
    }
}

.shake {
    animation: shake 0.5s;
}