.pickup-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}
.pickup-modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: 780px;
    border-radius: 5px;
    height: calc(100vh - 198px);
    overflow-y: auto;
}
div#order_review .message-container {
    color: #000;
}

div#order_review .message-container a {
    color: #ed3833;
}

.pickup-confirmation {
    margin: 20px 0;
}
.pickup-modal-content li {
    margin-left: 1.6em;
    line-height: 30px;
}

.pickup-modal-close {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    background-color: #f0f0f0;
    padding: 0px 10px;
    border-radius: 100%;
    border: 1px solid #ccc;
    transition: background-color 0.3s, color 0.3s;
}

.pickup-modal-close:hover {
    background-color: #333;
    color: #fff;
}
