/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-notice p {
    margin: 0 10px 10px 10px;
}

.cookie-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 8px 15px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 3px;
}

.cookie-btn:hover {
    background: #45a049;
}

.cookie-link {
    color: #dc2626;
    text-decoration: underline;
    margin-left: 5px;
}