/* ============================================== */
/* === קובץ סגנונות מרכזי לכל התגיות (Prefixes) === */
/* ============================================== */

/*
 * סגנון בסיסי (ברירת מחדל)
 * משתמשים ב- .prefix-label.prefix-X כדי להבטיח ספציפיות
 */
.prefix-label {
    background-color: #777; /* Default fallback */
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 0.4em;
    line-height: 1.4;
}

/* * תגיות מערכת וקומונות כלליות
 */
.prefix-label.prefix-none { 
    background-color: var(--muted); 
    color: var(--bg); 
}
.prefix-label.prefix-nova { 
    background-color: #3498db; 
}
.prefix-label.prefix-grief { 
    background-color: #95a5a6; 
}
.prefix-label.prefix-question { 
    background-color: #f39c12; 
}
.prefix-label.prefix-important { 
    background-color: #e74c3c; 
}

/* * תגיות "לב צעיר"
 */
.prefix-label.prefix-youth-vent { 
    background-color: #FF69B4; /* ורוד של פריקה */
}

/* * הוסף כאן תגיות עתידיות...
 * .prefix-label.prefix-new { background-color: #new-color; }
 */

