.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent__message {
    margin-right: 15px;
    display: inline-block;
}

.cookie-consent__message a {
    color: #fff;
    text-decoration: underline;
}

.cookie-consent__agree {
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

.cookie-consent__agree:hover {
    background-color: #45a049;
}

@media (max-width: 768px) {
    .cookie-consent {
        padding: 10px;
    }
    
    .cookie-consent__message {
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
    }
}

