/* Modern Locations Display Styles */
.locations-display-container {
    background: #f5fbff;
    padding: 0px 0;
    border-radius: 0;
}

.locations-label {
    font-weight: 600;
    color: #62748E;
    margin-bottom: 8px;
    display: block;
    font-size: 16px;
}

.locations-select {
    width: 100%;
    padding: 14px 16px;
    font-size: 18px;
    border: 1.5px solid #E2E8F0;
    border-radius: 16px;
    background: rgb(229 229 229 / 30%);
    color: #3A3A3A;
    margin-bottom: 24px;
    outline: none;
    transition: border 0.2s;
}

.locations-select:focus {
    border-color: #38b6ff;
}

.location-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 24px 0 rgba(56,182,255,0.08);
    padding: 32px 28px;
    margin: 0 auto;
}
.location-header {
    display: flex;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid #e5eaf1;
    padding-bottom: 16px;
    margin-bottom: 24px;
}
.location-icon-bg {
    background: #0096e0;
    color: #fff;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 2px 8px 0 rgba(56,182,255,0.10);
}
.location-title {
    font-size: 26px;
    font-weight: 700;
    color: #222e3a;
}

.location-title-main .location-office{
    color:#62748E;
}
.location-type {
    font-size: 16px;
    color: #8ca0b3;
    margin-top: 0px;
    display: flex;
    gap: 15px;
}
.location-info-v2 {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.location-section-v2 {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #f5f9ff;
    border-radius: 16px;
    padding: 20px 20px 16px 20px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px 0 rgba(56,182,255,0.04);
}
.section-icon-bg {
    color: #fff;
    border-radius: 12px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-top: 2px;
    box-shadow: 0 2px 8px 0 rgba(56,182,255,0.10);
}
.section-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.section-label {
    font-size: 13px;
    font-weight: 700;
    color: #8ca0b3;
    letter-spacing: 1px;
    margin-bottom: 2px;
}
.section-value {
    font-size: 16px;
    color: #222e3a;
    font-weight: 500;
}
.section-value a {
    color: #0066B3;
    text-decoration: none;
    font-weight: 600;
}
.section-value a:hover {
    text-decoration: underline;
}
