.modalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;

    .modalContainer {
        background-color: white;
        border-radius: 5px;
        padding: 10px;
        width: 60%;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);

        .modalHeader {
            display: flex;
            justify-content: space-between;
            align-items: center;

            button {
                background: none;
                border: none;
                font-size: 1.5rem;
                cursor: pointer;
            }
        }

        .modalBody {}
    }
}