.cm-card{border:1px solid #ddd;padding:15px;margin-bottom:15px;background:#fff}
.cm-new{background:#f3f4f6}
.cm-meta{font-size:12px;color:#666;margin-bottom:10px}

.cm-live-indicator{
    display:inline-flex;
    align-items:center;
    gap:6px;
    background:#e10600;
    color:#fff;
    padding:6px 12px;
    font-weight:700;
    font-size:13px;
    margin-bottom:15px;
    border-radius:3px;
}
.cm-live-indicator::before{
    content:'';
    width:8px;
    height:8px;
    background:#fff;
    border-radius:50%;
    animation:pulse 1s infinite;
}
@keyframes pulse{
    0%{transform:scale(1);}
    50%{transform:scale(1.4);opacity:0.6;}
    100%{transform:scale(1);}
}

.cm-live-notice{
 position:fixed;
 bottom:20px;
 left:50%;
 transform:translateX(-50%);
 background:#0073aa;
 color:#fff;
 padding:10px 15px;
 border-radius:6px;
}
.cm-live-notice button{
 margin-left:10px;
 background:#0073aa;
 color:#fff;
 border:1px solid #0073aa;
 padding:5px 10px;
 border-radius:4px;
 cursor:pointer;
}
