/* Cookie-Banner Styling für Klüber-IT */

#cookieBanner {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 420px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    padding: 25px;
    z-index: 10000;
    display: none;
    animation: slideIn 0.4s ease-out;
}

@keyframes slideIn {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#cookieBanner.show {
    display: block;
}

.cookie-banner-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-banner-icon {
    font-size: 28px;
    margin-right: 12px;
}

.cookie-banner-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.cookie-banner-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.cookie-banner-text a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-info {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 6px;
    margin: 15px 0;
    font-size: 13px;
    color: #555;
}

.cookie-info strong {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

.cookie-banner-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-btn {
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    width: 100%;
    font-family: inherit;
}

.cookie-btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.cookie-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.cookie-btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.cookie-btn-secondary:hover {
    background: #667eea;
    color: white;
}

/* Settings Button in der Ecke (optional) */
.cookie-settings-trigger {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: white;
    padding: 10px 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    color: #667eea;
    cursor: pointer;
    border: 1px solid #e0e0e0;
    z-index: 9999;
    display: none;
}

.cookie-settings-trigger.show {
    display: block;
}

.cookie-settings-trigger:hover {
    background: #f8f9fa;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    #cookieBanner {
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 100%;
        border-radius: 12px 12px 0 0;
        padding: 20px;
    }

    .cookie-settings-trigger {
        bottom: 10px;
        left: 10px;
        font-size: 12px;
        padding: 8px 12px;
    }
}
