:root {
    --white-color: #fff;
    --button-bg-color: #debff4;
    --button-hover-bg-color: #8b48d7;
}

body {
    background: url('https://pbs.twimg.com/media/Ban-0RaCYAAfI6L?format=jpg&name=large') center/cover no-repeat;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    text-align: center;
}

#weather-container {
    background: rgba(255, 255, 255, 0.3);
    min-width: 20vw;
    max-width: 80vw;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h2 {
    margin-bottom: 0cm;
}

input {
    width: calc(100% - 40px);
    padding: 10px;
    margin-top: 0cm;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.7);
}

button {
    background: var(--button-bg-color);
    color: var(--white-color);
    padding: 10px 20px;
    margin-top: 0cm;
    border-radius: 10px;
    border: none;
    border: 1px solid rgb(255, 255, 255);
    transition: background 0.3s ease;
}

button:hover {
    background: var(--button-hover-bg-color);
}

#location-display {
    background: rgba(0, 225, 255, 0.479);
    padding: 5px;
    margin: 25px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

#today-weather {
    background: rgba(0, 225, 255, 0.479);
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    order: 0;
}

.weekly-item {
    background: rgba(0, 225, 255, 0.479);
    padding: 10px;
    margin: 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    order: 1;
}

#weekly-forecast {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
}