.scc-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 15px 0;
    background: #333;
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scc-position-top {
    top: 0;
}

.scc-position-bottom {
    bottom: 0;
}

.scc-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.scc-banner-message {
    flex: 1;
    margin-right: 20px;
}

.scc-banner-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.scc-accept-button {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.scc-accept-button:hover {
    background: #45a049;
}

.scc-privacy-link {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.scc-privacy-link:hover {
    color: #45a049;
    text-decoration: underline;
}

@media screen and (max-width: 768px) {
    .scc-banner-container {
        flex-direction: column;
        text-align: center;
    }
    
    .scc-banner-message {
        margin-right: 0;
        margin-bottom: 15px;
    }
}