.confirm-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / 50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.confirm-modal.hidden {
    display: none;
}

.confirm-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.confirm-modal-content h2 {
    margin-top: 0;
}

.modal-buttons {
    margin-top: 1.5rem;
    display: flex;
    justify-content: space-around;
}

.modal-buttons button {
    padding: 0.5rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.cancel-modal-btn {
    border: 1px solid #047;
    background: white;
    color: #047;
}

.modal-confirm-btn {
    background: #047;
    color: white;
}

.close-modal-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
}

.confirm-modal-text {
    font-weight: bold;
    color: black;
}