/* Animation */
@keyframes slideInFromBottom {
    0% {
        transform: translate(-50%, 100%);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, 0);
        opacity: 1;
    }
}
.cookie-notice.cookie-hidden {
    display: none;
}

.cookie-notice.visible {
    display: block;
    animation: slideInFromBottom 0.5s ease-out;
}
.cookie-notice {
    animation: slideInFromBottom 0.5s ease-out;
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 100%;
    background-color: #ffffff;
    color: #333;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 20px 25px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    z-index: 9999;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.cnc-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.cnc-text {
    font-size: 15px;
    flex: 1 1 auto;
    margin-right: 10px;
}

.cnc-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cnc-buttons a,
.cnc-buttons button {
    padding: 10px 18px;
    font-size: 14px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.25s ease;
}

.cnc-buttons a {
    background-color: #f1f1f1;
    color: #333;
}

.cnc-buttons a:hover {
    background-color: #e2e2e2;
}

.cnc-buttons button {
    background-color: #4CAF50;
    color: #fff;
}

.cnc-buttons button:hover {
    background-color: #45a049;
}

.cookie-notice.hidden {
    display: none;
}
