/* Bir Cookie Consent - Style */

#bcc-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 700px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.18);
    z-index: 999999;
    padding: 24px 28px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    border: 1px solid #e0e0e0;
    animation: bcc-slide-up 0.4s ease;
}

@keyframes bcc-slide-up {
    from { opacity: 0; transform: translateX(-50%) translateY(30px); }
    to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

#bcc-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

#bcc-text {
    flex: 1;
    min-width: 200px;
}

#bcc-text strong {
    font-size: 16px;
    display: block;
    margin-bottom: 6px;
    color: #1a1a1a;
}

#bcc-text p {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

#bcc-text a {
    color: #1565c0;
    text-decoration: underline;
}

#bcc-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 160px;
}

.bcc-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: #fff !important;
    transition: opacity 0.2s, transform 0.1s;
    text-align: center;
    width: 100%;
}

.bcc-btn:hover {
    opacity: 0.88;
    transform: scale(1.02);
}

.bcc-accept   { background: #2e7d32; }
.bcc-essential { background: #1565c0; }
.bcc-reject   { background: #c62828; }

@media (max-width: 540px) {
    #bcc-inner {
        flex-direction: column;
    }
    #bcc-buttons {
        width: 100%;
    }
}
