.confirm-modal {
    background: #fff;
    margin: 15% auto;
    padding: 3em;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: none;


    h2 {
        margin-top: 0;
        font-size: 1.5em;
    }

    .modal-buttons {
        display: flex;
        justify-content: end;
        gap: 10px;
    }

    p {
        font-size: 1em;
        line-height: 1.6;
    }

    button {
        font-size: 16px;
        cursor: pointer;
        transition: background 0.3s;
        margin-top: 20px;
    }

    button.primary:hover {
        background-color: #218838;
    }

    button.destructive:hover {
        background-color: #bb1010;
    }

    .close {
        position: absolute;
        top: 10px;
        right: 10px;
        cursor: pointer;
        font-size: 20px;
    }

}

:modal::backdrop {
    background: rgba(0, 0, 0, 0.5);
}
