/* ABP Event Ticket demo note boxes */
.abp-demo {
    margin: 1.75rem 0;
}
.abp-demo__note {
    border: 1px solid #cfd8e3;
    border-left: 4px solid #2271b1;
    border-radius: 6px;
    background: #f6f8fa;
    padding: 12px 16px;
    margin-bottom: 18px;
    font-size: 13px;
    line-height: 1.5;
}
.abp-demo__note-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.abp-demo__badge {
    background: #2271b1;
    color: #fff;
    border-radius: 3px;
    padding: 2px 8px;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    white-space: nowrap;
}
.abp-demo__label {
    font-weight: 600;
    color: #1d2327;
}
.abp-demo__copy {
    margin-left: auto;
    background: #2271b1;
    color: #fff;
    border: 0;
    border-radius: 4px;
    padding: 5px 12px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
}
.abp-demo__copy:hover {
    background: #135e96;
}
.abp-demo__copy.copied {
    background: #2e7d32;
}
.abp-demo__code {
    background: #1d2327;
    color: #d7e3f0;
    border-radius: 4px;
    padding: 10px 12px;
    margin: 10px 0 0;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-all;
    font-size: 12.5px;
}
.abp-demo__code code {
    background: transparent;
    color: inherit;
    font-family: Consolas, Monaco, "Courier New", monospace;
}
.abp-demo__live {
    min-height: 30px;
}