/*!
 * style.css v4.2.0 (https://michael-debler.de/media/css/style.css)
 * Copyright 2025 Michael Debler
 */

.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    color: #333;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
    display: none; /* Standardmäßig aus, wird per JS aktiviert */
    z-index: 9999;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.btn-primary { background: #007bff; color: white; border: none; padding: 10px 20px; border-radius: 6px; cursor: pointer; font-weight: bold; }
.btn-secondary { background: #e0e0e0; color: #333; border: none; padding: 10px 20px; border-radius: 6px; cursor: pointer; }

/* Desktop-Anpassung */
@media (min-width: 768px) {
    .cookie-container { flex-direction: row; justify-content: space-between; max-width: 1000px; }
}