/* Custom Made Design */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    margin:auto 0;
}

h1{
    margin:auto;
    text-align:start;
    color: #009758;
}

h2, form{
    margin:auto;
    text-align:start;
    color: #000000;
    padding: 0.5rem;
}


.error-message{
    margin-top: 15px;
    color: red
}

.footer{
    display: flex;
    margin: 0;
    padding: 20px;
    color: rgb(0, 0, 0)
}

/* Weather Table Design */
.weather-table {
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 0.95em;
    min-width: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
}

.weather-table thead tr {
    background-color: #009758;
    color: #ffffff;
    text-align: left;
    font-weight: bold;
}

.weather-table th, 
.weather-table td {
    padding: 14px 20px;
}

.daytemp{
    color: rgb(207, 93, 0);
}

.nighttemp{
    color: rgb(0, 140, 255);
}

.weather-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

.weather-table tbody tr:nth-of-type(even) {
    background-color: #f9f9f9;
}

.weather-table tbody tr:last-of-type {
    border-bottom: 2px solid #009758;
}

.weather-table tbody tr:hover {
    background-color: #f1f1f1;
    transition: 0.2s ease-in-out;
}
