#pickup-store-selection {
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ddd;
    background: #f9f9f9;
}

#pickup-store-selection h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

#pickup-store-select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; /* Ensures padding doesn't increase total width */
}

#pickup-store-info {
    margin-top: 15px;
    padding: 10px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
}

#pickup-store-info h5 {
    margin-top: 0;
    color: #555;
    font-size: 1em;
}

.pickup-store {
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap on smaller screens */
    gap: 20px; /* Space between columns */
}

.pickup-store-left,
.pickup-store-right {
    flex: 1; /* Distribute space evenly */
    min-width: 250px; /* Minimum width before wrapping */
}

.pickup-store p {
    margin: 5px 0;
    line-height: 1.5;
}

.pickup-store strong {
    font-weight: bold;
}