/* Style dla bannera zgody na pliki cookie */
.cookie-consent-banner {
    position: relative;
    background-color: rgba(33, 37, 41, 0.95);
    color: #fff;
    padding: 15px 0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-consent-banner.active {
    display: block;
}

.cookie-consent-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-text a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-btn-accept {
    background-color: #28a745;
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #218838;
}

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

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

/* Responsywność */
@media (max-width: 768px) {
    .cookie-consent-banner {
        padding: 20px 0;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-text {
        min-width: auto;
        width: 100%;
    }
    
    .cookie-text p {
        font-size: 13px;
        padding: 0 10px;
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
        gap: 15px;
    }
    
    .cookie-btn {
        padding: 10px 25px;
        font-size: 13px;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 25px 0;
    }
    
    .cookie-text p {
        font-size: 12px;
        padding: 0 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 200px;
        padding: 12px 20px;
    }
}