.nb-badge-wrapper {
    position: relative;
    display: inline-block;
}

.nb-badge-wrapper img {
    display: block;
}

.nb-badge-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;

    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    color: #ffffff;
    font-size: 13px;
    line-height: 1.3;
}

.nb-badge-bar .nb-badge-label {
    font-weight: 600;
}

.nb-badge-bar .nb-badge-icon {
    max-height: 24px;
    max-width: 24px;
    margin-left: 8px;
}

.nb-badge-bar.nb-badge-chatgpt {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.55),
        rgba(0, 150, 120, 0.65)
    );
}

.nb-badge-bar.nb-badge-nanobanana {
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.55),
        rgba(255, 210, 60, 0.65)
    );
}
