.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: #fff;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2);
}
.cookie-notice a {
    color: #007bff;
    text-decoration: underline;
}
.cookie-notice button {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 8px 16px;
    margin: 5px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
}
.cookie-notice button:hover {
    background: #0056b3;
}
.cookie-notice button.reject {
    background: #dc3545;
}
.cookie-notice button.reject:hover {
    background: #c82333;
}