.sgac-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;

    z-index: 999999;

    max-width: 1100px;
    margin: 0 auto;

    background: #ffffff;
    color: #222222;

    border: 1px solid #dddddd;
    border-radius: 10px;

    box-shadow:
        0 8px 30px rgba(0, 0, 0, 0.15);

    padding: 20px;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
}

.sgac-banner[hidden] {
    display: none !important;
}

.sgac-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.sgac-text {
    flex: 1;
}

.sgac-text strong {
    display: block;
    margin-bottom: 6px;

    font-size: 18px;
    line-height: 1.3;
}

.sgac-text p {
    margin: 0;

    font-size: 14px;
    line-height: 1.6;

    color: #555555;
}

.sgac-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.sgac-button {
    border: 0;
    border-radius: 6px;

    padding: 11px 20px;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.sgac-button:hover {
    opacity: 0.9;
}

.sgac-button:active {
    transform: translateY(1px);
}

.sgac-accept {
    background: #111111;
    color: #ffffff;
}

.sgac-reject {
    background: #eeeeee;
    color: #222222;
}


/*
 * Cookie Settings button
 */

.sgac-settings {
    position: fixed;
    left: 15px;
    bottom: 15px;

    z-index: 999998;

    border: 1px solid #dddddd;
    border-radius: 6px;

    background: #ffffff;
    color: #333333;

    padding: 7px 10px;

    font-size: 12px;

    cursor: pointer;

    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.08);
}


/*
 * Mobile
 */

@media (max-width: 700px) {

    .sgac-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;

        padding: 18px;
    }

    .sgac-content {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .sgac-actions {
        width: 100%;
    }

    .sgac-button {
        flex: 1;
    }
}