.modal {
    /* Skryto defaultně */
    display: none;  
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;            /* 100% viewport width */
    height: 100vh;           /* 100% viewport height */
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    justify-content: center; /* Flexbox - centrování horizontálně */
    align-items: center;     /* Flexbox - centrování vertikálně */
    z-index: 9999;           /* Zajistí, že modal je nad ostatním obsahem */
}

.modal.active {
    display: flex;  /* Když je modal aktivní, zobrazíme ho jako flex container */
}

.modal-content {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
}

.modal-content h2 {
    margin-bottom: 10px;
}

.modal-content button {
    margin: 10px;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
}

.btn-danger {
    background-color: white;
    color: black;
}
.btn-danger:hover {background-color:#666;}
.btn-success {border-radius:5px;background-color:#222;color:white;}
.btn-success:hover {background-color:green;}
.buttons{display:flex;align-items:center;justify-content:center;}
