@import url("../constants.css");

.modal-default {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(0,0,0,0.5);
    align-items: center;
    justify-content: center;
}

.modal-default-content {
    background-color: var(--light-purple);
    color: var(--off-white);
    margin: 15% auto;
    padding: 20px;
    border: 3px solid var(--lighter-purple);
    width: 50%;
    border-radius: 10px;
}

.modal-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1em;
    padding: 0.5em;
    border-bottom: 1px solid var(--lighter-purple);
}

.modal-header-label {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--off-white);
}

.modal-default-body {
    display: flex;
    flex-direction: column;
    gap: 1em;
}


@media (max-width: 390px) {
    .modal-default-content {
        width: 90%;
    }

    .modal-header {
        font-size: 0.75em;
    }

    .modal-default-body {
        gap: 0.5em;
        font-size: 0.75em;
    }
}