/* Enhanced Weather Widget Styles */
.weather-widget {
    background: linear-gradient(135deg, #000000 0%, #1a237e 100%);
    color: white;
    transition: all 0.3s ease;
}

.weather-widget .current-weather {
    position: relative;
    overflow: hidden;
}

.weather-widget .temperature {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.weather-widget .feels-like {
    font-size: 0.9rem;
    opacity: 0.8;
}

.weather-widget .condition-text {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.weather-widget .details {
    font-size: 0.95rem;
    opacity: 0.9;
}

.weather-widget .forecast {
    background: rgba(255, 255, 255, 0.05);
}

.weather-widget .forecast-header {
    background: rgba(0, 0, 0, 0.1);
}

.weather-widget .forecast-items {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.weather-widget .forecast-items::-webkit-scrollbar {
    height: 6px;
}

.weather-widget .forecast-items::-webkit-scrollbar-track {
    background: transparent;
}

.weather-widget .forecast-items::-webkit-scrollbar-thumb {
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.weather-widget .forecast-item {
    min-width: 100px;
    transition: background-color 0.2s ease;
}

.weather-widget .forecast-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.weather-widget .weather-alerts {
    max-height: 200px;
    overflow-y: auto;
}

.weather-widget .weather-alert {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.weather-widget .weather-alert:last-child {
    border-bottom: none;
}

/* Enhanced Location Search Styles */
.location-search-container {
    position: relative;
}

.location-search .input-group-text {
    background: transparent;
    border-right: none;
}

.location-search .form-control {
    border-left: none;
}

.location-search .form-control:focus {
    border-color: #ced4da;
    box-shadow: none;
}

.location-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
    max-height: 300px;
    overflow-y: auto;
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.2s ease;
}

.location-suggestions .list-group-item {
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 0.75rem 1rem;
    transition: background-color 0.2s ease;
}

.location-suggestions .list-group-item:last-child {
    border-bottom: none;
}

.location-suggestions .list-group-item:hover {
    background-color: #f8f9fa;
    cursor: pointer;
}

.location-map-preview {
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.weather-widget {
    animation: fadeIn 0.3s ease;
}

.location-suggestions {
    animation: fadeIn 0.2s ease;
}
