/* index.css */
@import '@yandex/ymaps3-default-ui-theme/dist/esm/index.css';

body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    padding: 20px;
}

#map {
    width: auto;
    height: 200px;
}

.button {
    display: inline-block;
    padding: 15px 30px;
    background: #d10563;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

footer {
    margin-top: 40px;
    color: #666;
}

#theDate {
    text-decoration: underline;
    cursor: pointer;  /* Добавляем указатель */
}

#theDate:hover::after,
#theDate:active::after {
    content: " 📅";
    display: inline-block;
    margin-left: 5px;
}