/* GeoSmart Delivery Details Widget (Flipkart Style) */
.gs-delivery-details-wrap {
    margin: 20px 0;
    font-family: inherit;
}

.gs-dd-title {
    font-size: 16px;
    font-weight: 600;
    color: #212121;
    margin: 0 0 12px 0;
    padding: 0;
}

.gs-dd-container {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.gs-dd-location-btn {
    display: flex;
    align-items: center;
    width: 100%;
    background-color: #f2f7fc; /* Light blueish tint */
    border: none;
    border-bottom: 1px solid #e0e0e0;
    padding: 14px 16px;
    cursor: pointer;
    text-align: left;
    transition: background-color 0.2s ease;
}

.gs-dd-location-btn:hover {
    background-color: #e8f0f8;
}

.gs-dd-icon {
    width: 18px;
    height: 18px;
    color: #424242;
    flex-shrink: 0;
}

.gs-dd-address {
    flex: 1;
    min-width: 0;
    font-size: 14px;
    color: #424242;
    margin: 0 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.gs-dd-arrow {
    width: 16px;
    height: 16px;
    color: #757575;
    flex-shrink: 0;
}

.gs-dd-delivery-info {
    display: flex;
    align-items: center;
    background-color: #f5f5f5; /* Light gray */
    padding: 14px 16px;
}

.gs-dd-time {
    font-size: 14px;
    color: #212121;
    margin-left: 12px;
}

.gs-dd-time strong {
    font-weight: 600;
}
