/* LumorowLMS — Custom Activity Block */
.llmsb-ca-block {
    border: 2px solid var(--llmsb-primary);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.llmsb-ca-title {
    padding: 14px 24px 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--llmsb-dark);
    border-bottom: 1px solid var(--llmsb-border);
    padding-bottom: 12px;
    margin: 0 0 4px;
}
.llmsb-ca-content {
    padding: 20px 24px;
}

/* Ensure custom activity HTML inherits theme font */
.llmsb-ca-content * {
    font-family: inherit;
    box-sizing: border-box;
}

/* Override any hardcoded colors the HTML author may have used */
.llmsb-ca-content [style*="--llmsb-primary"] { color: var(--llmsb-primary); }
.llmsb-ca-content button {
    cursor: pointer;
    font-family: inherit;
}
