/* Основной стиль для всего тела страницы */
body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #333; /* Темно-серый фон */
    margin: 0;
    color: white;
}

/* Контейнер погоды */
.weather-container {
    text-align: center;
    background-color: #2c2c2c; /* Темный фон для контейнера */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    width: 320px;
    transition: all 0.3s ease;
}

.weather-container:hover {
    transform: scale(1.05); /* Легкая анимация при наведении */
}

/* Стиль для ввода города и кнопки */
.search input {
    padding: 10px;
    width: 70%;
    font-size: 16px;
    margin-right: 10px;
    border: 2px solid #ffa500; /* Оранжевая граница */
    border-radius: 4px;
    background-color: #555;
    color: white;
}

.search button {
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid #ff6347; /* Оранжевая граница */
    background-color: #ff6347; /* Оранжевый фон */
    color: white;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.search button:hover {
    background-color: #ff4500; /* Темно-оранжевый при наведении */
}

/* Стиль для отображения информации о погоде */
.weather-info {
    margin-top: 20px;
    font-size: 18px;
}

.weather-info p {
    margin: 5px 0;
    font-weight: bold;
}

.weather-info img {
    width: 50px;
    height: 50px;
}

/* Нижний текст для "Made by" */
.footer {
    margin-top: 30px;
    font-size: 14px;
    color: #ffa500; /* Оранжевый текст */
    text-align: center;
}

/* Стиль для даты и доступа к куки */
.cookie-consent {
    margin-top: 20px;
    padding: 10px;
    background-color: #333;
    color: white;
    font-size: 14px;
    border-radius: 5px;
}
