/* MODAL STYLING */

.mask {
    display: none;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    background-color: var(--shadow);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
}

.mask.active {
    display: flex;
}

.modal {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    margin: 1.5rem;
    gap: 2rem;
    background-color: var(--background);
    border-radius: var(--borderRadius);
    box-shadow: 0px 6px 12px var(--shadow);
}

.modal .content {
    display: flex;
    flex-direction: column;
    text-align: center;

    gap: 0.5rem;
}

.modal .actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    gap: 1rem;
}
