#cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    z-index: 9999;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    display: none; /* Скрываем по умолчанию, показываем через JS */
}
#cookie-notice p {
    margin: 0;
    display: inline-block;
}
#cookie-accept {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 5px 15px;
    cursor: pointer;
    font-size: 14px;
}
#cookie-accept:hover {
    background: #005177;
}