/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
 body {
     align-items: center;
     background: linear-gradient(to bottom, #87CEEB 0%, #E0F6FF 100%);
     box-sizing: border-box;
     color: #333;
     display: flex;
     flex-direction: column;
     justify-content: center;
     margin: 0;
     min-height: 100vh;
     padding: 20px;
}
 .form-container {
     background: rgba(255, 255, 255, 0.9);
     border-radius: 15px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     margin-bottom: 20px;
     padding: 30px;
     text-align: center;
     width: 500px;
}
 .forecast-container {
     background: rgba(255, 255, 255, 0.9);
     border-radius: 15px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     margin-bottom: 20px;
     padding: 30px;
     text-align: center;
     width: 500px;
}
 input[type="text"] {
     padding: 10px;
     margin: 10px 0;
     width: 100%;
     box-sizing: border-box;
     border: 1px solid #007bff;
     border-radius: 5px;
     font-size: 16px;
     text-align: center;
}
 button, .button {
     padding: 10px 20px;
     background-color: #FFD700;
     color: #333;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     font-size: 16px;
     transition: background-color 0.3s;
}
 button:hover, .button:hover {
     background-color: #FFA500;
}
 .weather-widget {
     background: rgba(255, 255, 255, 0.9);
     padding: 30px;
     border-radius: 15px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
     width: 500px;
     text-align: center;
     margin-bottom: 20px;
}
 .current-weather {
     display: flex;
     justify-content: space-between;
     align-items: center;
}
 .city-name {
     font-size: 28px;
     font-weight: bold;
     color: #007bff;
     margin-bottom: 20px;
}
 .current-temp {
     font-size: 24px;
     color: #555;
     margin-bottom: 20px;
}
 .forecast {
     display: flex;
     justify-content: space-between;
     gap: 10px;
}
 .forecast-day {
     flex: 1;
     text-align: center;
     background-color: #f9f9f9;
     border-radius: 5px;
     padding: 10px;
}
 .day-name {
     font-size: 16px;
     font-weight: bold;
     color: #333;
     margin-bottom: 5px;
}
 .high-low {
     font-size: 14px;
     color: #777;
}
 .cache-status {
     text-align: center;
     font-size: 0.8em;
     color: #fff;
     padding: 5px 0;
     background-color: #4facfe;
     border-radius: 5px;
}
 .refresh {
     margin-top: 20px;
     display: flex;
     justify-content: center;
}
 .refresh a, .refresh button {
     margin-left: 20px;
}
 @media (max-width: 430px) {
     .form-container {
         max-width: 380px;
    }
     .weather-widget {
         max-width: 380px;
    }
}
