/* Simple Cookie Consent - Banner styles */

.scc-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999999;
    background: #1f2937;
    color: #fff;
    padding: 16px 20px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    animation: scc-fade-in 0.3s ease-out;
}

.scc-position-bottom {
    bottom: 0;
}

.scc-position-top {
    top: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.scc-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.scc-banner-text {
    flex: 1;
    min-width: 260px;
}

.scc-banner-text p {
    margin: 0 0 6px 0;
    color: #fff;
}

.scc-banner-text p:last-child {
    margin-bottom: 0;
}

.scc-policy-link a {
    color: #93c5fd;
    text-decoration: underline;
}

.scc-policy-link a:hover {
    color: #bfdbfe;
}

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

.scc-btn {
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.05s ease;
    font-family: inherit;
    line-height: 1.2;
}

.scc-btn:active {
    transform: translateY(1px);
}

.scc-btn-primary {
    background: #2563eb;
    color: #fff;
}

.scc-btn-primary:hover {
    background: #1d4ed8;
}

.scc-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.scc-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.7);
}

.scc-btn:focus-visible {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}

@keyframes scc-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scc-position-top {
    animation: scc-fade-in-top 0.3s ease-out;
}

@keyframes scc-fade-in-top {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scc-banner.scc-hidden {
    display: none;
}

@media (max-width: 600px) {
    .scc-banner-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .scc-banner-buttons {
        justify-content: stretch;
    }

    .scc-banner-buttons .scc-btn {
        flex: 1;
    }
}
