/* Style dla mechanizmu zgody na cookies */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    z-index: 9999;
    padding: 15px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-content p {
    margin: 10px 0;
    line-height: 1.5;
}

.cookie-buttons {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-buttons .btn-primary {
    background-color: #ff6b35;
    color: white;
}

.cookie-buttons .btn-primary:hover {
    background-color: #e85a2a;
}

.cookie-buttons .btn-secondary {
    background-color: #6c757d;
    color: white;
}

.cookie-buttons .btn-secondary:hover {
    background-color: #5a6268;
}

.cookie-more-info {
    font-size: 0.9em;
}

.cookie-more-info a {
    color: #ff6b35;
    text-decoration: underline;
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        margin: 5px 0;
    }
}
