/* imenyny.css */
#searchName {
    padding: 8px;
    margin-right: 10px;
    margin-bottom: 10px;
}

#searchButton {
    padding: 8px 35px;
    border-radius: 15px;
    border: none;
    background-color: #ed1b2f;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Додаємо плавний перехід */
}

#searchButton:hover {
    background-color: #96ceb4; /* Змінюємо колір при наведенні */
}

#searchResult {
    margin-top: 20px;
    font-weight: bold;
    font-family: 'Georgia'; /* Змінюємо шрифт */
    color: #4ecdc4; /* Змінюємо колір тексту */
    font-size: 20px; /* Додаємо розмір шрифта */
}

.widget {
    margin: 20px;
    padding: 20px;
    border: 2px solid #f7775e;
    font-family: Arial, sans-serif;
}

.date {
    font-size: 28px;
    font-weight: bold;
}

.names {
    font-size: 16px;
}