#cookie-notification {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 280px;
    background-color: #000;
    color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    z-index: 1000;
    box-sizing: border-box;
}
#cookie-notification p {
    margin: 0 0 15px 0;
    font-size: 14px;
    line-height: 1.4;
}

#cookie-notification p a {
    color: white;
}
#cookie-accept {
    display: block;
    width: 100%;
    background-color: #007BFF;
    color: black;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s;
}
#cookie-accept:hover {
    background-color: #0069d9;
}
@media (max-width: 480px) {
    #cookie-notification {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 40px);
        max-width: 400px;
    }
}
