/* Address Tile Styles */
.order-details-address-tile {
    padding: 15px;
    background-color: #f5f5f5;
    border-radius: 5px;
    transition: box-shadow 0.2s ease-in-out;
}

.order-details-address-tile:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.order-details-address-title {
    font-size: 18px;
    font-weight: 500;
    color: #000;
}

.order-details-address-name {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.order-details-address-full {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
}

.order-details-address-location {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.order-details-address-phone {
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.order-details-address-spacer {
    height: 15px;
}

.order-details-address-spacer-tiny {
    height: 5px;
}