#sccm-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 2147483000;
    background: #5c534c;
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
    padding: 20px;
    max-width: 390px;
    margin: 0 auto;
    display: block;
    font-family: Arial, sans-serif;
}

#sccm-banner a,
#sccm-modal a {
    color: #93c5fd;
}

.sccm-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

#sccm-banner button,
#sccm-modal button {
    border: 0;
    padding: 11px 16px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.2;
}

/* Accept all */
#sccm-accept,
#save {
    background: #f44a22;
    color: #fff;
}

/* Reject + manage + close */
#sccm-reject,
#sccm-open,
#close {
    background: #453b33;
    color: #fff;
}

/* Modal overlay */
#sccm-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2147483646;
    padding: 20px;
    font-family: Arial, sans-serif;
}

/* Modal box */
#sccm-modal .box {
    background: #fff;
    color: #111827;
    padding: 24px;
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Modal headings/text */
#sccm-modal h3 {
    margin-top: 0;
    margin-bottom: 16px;
}

#sccm-modal label {
    display: block;
    margin-bottom: 16px;
    color: #111827;
}

#sccm-modal input[type="checkbox"] {
    margin-right: 10px;
    transform: scale(1.15);
}

/* Mobile */
@media (max-width: 640px) {
    #sccm-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
        padding: 16px;
    }

    .sccm-actions {
        flex-direction: column;
    }

    #sccm-banner button,
    #sccm-modal button {
        width: 100%;
    }
}