.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

#map {
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    height: 500px !important;
}

.card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Elevation Chart Styles */
#elevationChart {
    width: 100% !important;
    height: 200px !important;
}

.elevation-container {
    margin-top: 1rem;
    background: white;
    border-radius: 8px;
    padding: 1rem;
}

/* Weather Styles */
.weather-info {
    margin-bottom: 1rem;
}

.weather-icon {
    width: 64px;
    height: 64px;
}

.weather-description {
    text-transform: capitalize;
    color: #666;
}

.weather-details .border {
    background-color: #f8f9fa;
    transition: background-color 0.2s;
}

.weather-details .border:hover {
    background-color: #e9ecef;
}

.weather-details .small {
    font-size: 0.875rem;
}

/* Form Styles */
.form-range::-webkit-slider-thumb {
    background: #0d6efd;
}

.form-range::-moz-range-thumb {
    background: #0d6efd;
}

#distanceValue {
    font-weight: bold;
    color: #0d6efd;
    margin-top: 5px;
}

/* Route Styles */
.route-info {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #map {
        height: 400px !important;
    }
    
    #elevationChart {
        height: 150px !important;
    }
}
