/* Map Styles */
.location-input-wrapper {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.location-input-wrapper input {
    flex: 1;
}

.location-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(82, 196, 26, 0.3);
}

.location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(82, 196, 26, 0.4);
}

.location-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.map-container {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(74, 144, 226, 0.2);
    background: var(--white);
}

.map-display {
    width: 100%;
    height: 300px;
    border-radius: 12px 12px 0 0;
}

.map-info {
    padding: 12px 16px;
    background: var(--bg-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
}

#mapCoordinates {
    font-size: 12px;
    color: var(--text-light);
    font-family: 'Courier New', monospace;
}

.hide-map-btn {
    padding: 6px 12px;
    background: var(--text-light);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hide-map-btn:hover {
    background: #737373;
}

