/* Smart Choice Consent Banner Styles */
.scc-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999999;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    animation: sccSlideIn 0.3s ease-out;
}

.scc-banner.scc-position-bottom {
    bottom: 0;
}

.scc-banner.scc-position-top {
    top: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: sccSlideInTop 0.3s ease-out;
}

@keyframes sccSlideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes sccSlideInTop {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.scc-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.scc-banner-message {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.6;
}

.scc-banner-message a {
    text-decoration: underline;
    font-weight: 600;
    margin-left: 5px;
}

.scc-banner-message a:hover {
    text-decoration: none;
}

.scc-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.scc-banner button {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.scc-banner button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.scc-banner button:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .scc-banner {
        padding: 15px;
    }
    
    .scc-banner-content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .scc-banner-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .scc-banner button {
        flex: 1;
        min-width: 120px;
    }
}