body {
    font-family: Inter, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #121212;
    background-image: url('/assets/images/bruhloww.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.container {
    text-align: center;
    background: #181818;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    transition: transform 0.3s, background 0.3s ease-in-out;
}

.container:hover {
    transform: scale(1.02);
    background: #242424;
}

.search {
    margin-bottom: 20px;
    position: relative;
}

.search input {
    padding: 10px;
    font-size: 16px;
    width: 200px;
    background: #242424;
    border: 1px solid #4CAF50;
    color: #ffffff;
    border-radius: 4px;
}

.search button {
    padding: 10px;
    font-size: 16px;
    margin-left: 10px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.search button:hover {
    background: #81C784;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    background: #181818;
    border: 1px solid #4CAF50;
    max-height: 150px;
    overflow-y: auto;
    z-index: 10;
    border-radius: 4px;
}

.suggestion-item {
    padding: 10px;
    cursor: pointer;
    color: #ffffff;
}

.suggestion-item:hover {
    background: #242424;
}

.weather-info {
    margin-top: 20px;
}

.weather-info h2 {
    margin-bottom: 10px;
    color: #4CAF50;
}

.weather-info p {
    margin: 5px 0;
    color: white;
}