/* Global styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: black;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    color: #ffffff;
    flex-direction: column;
    transition: background-image 1s ease-in-out;
}

/* Main container */
.container {
    width: 90%;
    max-width: 60vw;
    margin-top: 8vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Search box - long input field similar to Bing */
.search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 75vw;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3rem;
    padding: 1rem 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 0.25rem 0.625rem rgba(0, 0, 0, 0.2);
}

.search-box input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border-radius: 3rem;
    border: none;
    background: transparent;
    color: #ffffff;
    font-size: 1.2rem;
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* Countdown and waste cards - aligned side by side */
.info-container {
    display: flex;
    justify-content: center;
    gap: 2vw;
    margin-bottom: 2vh;
}

.info-card, .waste-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    min-width: 150px;
    width: 20vw;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.current-weather-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    min-width: 150px;
    width: 20vw;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2vh;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.3);
    color: yellow;
    font-weight: bold;
}

/* Weather forecast container */
.forecast-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2vh;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem;
    max-width: 80vw;
}

.forecast-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
    min-width: 100px;
    width: 10vw;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.forecast-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.forecast-card p {
    font-size: 0.9rem;
    margin: 0.2rem 0;
}

.forecast-card p:nth-child(2) {
    font-size: 2rem;
    line-height: 1;
}
