/* Container and Layout */
.rsweather-container { 
    max-width: 600px; 
    margin: 20px 0; 
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; 
    color: #333; 
}
.rsweather-search-wrapper { position: relative; margin-bottom: 15px; }
#rsweather-input { 
    width: 100%; padding: 12px; border: 1px solid #ccc; 
    border-radius: 4px; box-sizing: border-box; font-size: 16px;
}
#rsweather-autocomplete-list { 
    position: absolute; top: 100%; left: 0; right: 0; 
    background: #fff; border: 1px solid #ccc; border-top: none; 
    border-radius: 0 0 4px 4px; z-index: 999; margin: 0; padding: 0; 
    list-style: none; display: none; max-height: 200px; overflow-y: auto; box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
#rsweather-autocomplete-list li { padding: 10px; cursor: pointer; border-bottom: 1px solid #eee; font-size: 14px;}
#rsweather-autocomplete-list li:hover { background-color: #f0f0f0; }

/* The Header Report Section */
.rsweather-report { 
    background: linear-gradient(to bottom, #1e3c72, #2a5298); 
    color: #fff; padding: 25px 20px; border-radius: 8px 8px 0 0; text-align: center; 
}
.rsweather-report h4 { margin: 0 0 5px 0; font-size: 24px; font-weight: normal; letter-spacing: 0.5px; color: #fff;}
.rsweather-current-temp { font-size: 54px; font-weight: bold; margin: 10px 0; display: flex; justify-content: center; align-items: center; gap: 15px; }

/* The Hourly Scroll Section */
.rsweather-hourly-container { 
    display: flex; gap: 0; overflow-x: auto; padding: 0;
    scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
    background: #f8f9fa; border: 1px solid #e2e8f0; border-top: none; border-radius: 0 0 8px 8px;
}
.rsweather-hourly-card { 
    flex: 0 0 80px; padding: 15px 5px; text-align: center; 
    border-right: 1px solid #e2e8f0; box-sizing: border-box;
}
.rsweather-hourly-card:last-child { border-right: none; }
.rsweather-hourly-card .time { font-weight: 600; color: #4a5568; margin-bottom: 5px; font-size: 13px; }
.rsweather-hourly-card .icon { font-size: 24px; margin: 8px 0; }
.rsweather-hourly-card .temp { font-size: 16px; font-weight: bold; color: #2d3748; }

/* Daily Forecast Section */
.rsweather-daily-title { font-size: 16px; margin: 20px 0 10px 0; font-weight: bold; }
.rsweather-daily-container { background: #fff; border: 1px solid #e2e8f0; border-radius: 8px; padding: 0 15px; }
.rsweather-daily-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #e2e8f0; }
.rsweather-daily-row:last-child { border-bottom: none; }
.rsweather-daily-row .day { width: 80px; font-weight: 600; color: #4a5568; }
.rsweather-daily-row .icon { font-size: 20px; width: 40px; text-align: center; }
.rsweather-daily-row .temps { width: 80px; text-align: right; }
.rsweather-daily-row .max { font-weight: bold; color: #2d3748; margin-right: 8px; }
.rsweather-daily-row .min { color: #718096; }