/* styles.css */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to bottom, #4facfe, #00f2fe);
    color: #333;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    height: 910px;
}

.app-header {
    text-align: center;
    padding: 20px;
}

.app-header h1 {
    margin: 0;
    font-size: 2.5rem;
    color: #fff;
}

.search-form {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.search-bar {
    padding: 10px;
    width: 70%;
    border: 1px solid #ccc;
    border-radius: 5px 0 0 5px;
    font-size: 1rem;
}

.search-button {
    padding: 10px 20px;
    border: none;
    background-color: #007BFF;
    color: #fff;
    font-size: 1rem;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #0056b3;
}

.current-weather, .forecast {
    margin-top: 30px;
    background: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.current-weather h2, .forecast h2 {
    margin-top: 0;
    text-align: center;
    font-size: 1.8rem;
    color: #333;
}

.weather-info {
    text-align: center;
}

.weather-info .temperature {
    font-size: 3rem;
    font-weight: bold;
    color: #FF4500;
}

.weather-info .description {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #555;
}

.weather-info .location {
    font-size: 1rem;
    color: #888;
}

.forecast-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    text-align: center;
}

.day {
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.day:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.day p {
    margin: 5px 0;
    font-size: 1rem;
}

footer {
    text-align: center;
    margin-top: 30px;
    font-size: 0.9rem;
    color: #fff;
}

table, th, td {
  padding: 10px;
}

table {
  width: 100%;
}
