/* Semplice Gestione Cookie - stile banner */

#sgc-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 999999;
    padding: 16px 20px;
    box-shadow: 0 0 12px rgba(0,0,0,0.25);
    font-size: 14px;
    line-height: 1.5;
}

#sgc-cookie-banner.sgc-position-bottom {
    bottom: 0;
}

#sgc-cookie-banner.sgc-position-top {
    top: 0;
}

#sgc-cookie-banner .sgc-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

#sgc-cookie-banner .sgc-text {
    margin: 0;
    flex: 1 1 60%;
}

#sgc-cookie-banner .sgc-text a {
    text-decoration: underline;
    font-weight: 600;
    margin-left: 6px;
}

#sgc-cookie-banner .sgc-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.sgc-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.sgc-btn:hover {
    opacity: 0.85;
}

.sgc-btn-secondary {
    background-color: transparent;
    color: inherit;
    border: 1px solid currentColor;
}

@media (max-width: 600px) {
    #sgc-cookie-banner .sgc-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    #sgc-cookie-banner .sgc-actions {
        width: 100%;
    }
    .sgc-btn {
        flex: 1;
    }
}
