.shopper-list .shopper-card {
    box-shadow: 1px 1px 3px #d3d3d3;
    padding: 10px;

    border-radius: 5px;

    width: auto;
}

.shopper-list .shopper-card .address-fields.visible {
    display: table-row-group;
}

.shopper-list .shopper-card .address-fields {
    display: none;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: #fff;
    padding: 20px;
    border-radius: 6px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}

.modal-actions {
    margin-top: 20px;
    display: flex;
    justify-content: end;
}

.modal-actions button {
    margin: 0 5px;
}