﻿/* Basic styling for modal */
.shopping-modal-foundation {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.shopping-modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    max-width: 800px;
}

.modal-question-parent {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.shopping-modal-buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    min-height: 3rem;
    box-sizing: inherit;
}

    .shopping-modal-buttons button {
        margin: 0;
        height: 23px;
    }

.button-panel {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    gap: 1ch;
}
