.cookie-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    color: #333;
    z-index: 1000;
}

.cookie-notice h4 {
    margin: 0 0 10px;
    font-size: 16px;
    color: #555;
}

.cookie-notice p {
    margin: 0 0 10px;
    line-height: 1.5;
}

.cookie-notice button {
    display: inline-block;
    padding: 8px 12px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.cookie-notice button:hover {
    background-color: #0056b3;
}