.dialog-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.dialog-overlay.active {
    opacity: 1;
}

.dialog {
    background: white;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.dialog-overlay.active .dialog {
    transform: scale(1);
}

.dialog-header {
    padding: 20px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dialog-close {
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
}

.dialog-content {
    padding: 20px;
}

.dialog-footer {
    padding: 0 20px 20px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.btn-cancel, .btn-confirm {
   display: block;
    vertical-align:middle;
    border: 2px solid #0091ab;
    text-decoration: none;
    border-radius:10px;
    font-family: outfit !important;
    font-weight: bold;
/*  background: linear-gradient(to right, #00B6D6, #0091AB) !important;*/
    background: #0091AB;
    padding: 4px 15px 5px 15px;
    color:white;
    box-shadow: 0 .2em .4em gray;
    text-shadow: 0 -.05em .05em #333;
}

.btn-cancel:active {
    box-shadow: 0 .2em 0.6em #666;
    transform: translateY(1px);
}

.btn-confirm:active {
    box-shadow: 0 .2em 0.6em #666;
    transform: translateY(1px);
}


.btn-cancel {
    background-color:white;
    color:#0091AB;
}

.btn-confirm {
    color: white;*/
}


