/* badge-channel.css — auto-extracted from index.html
   Category: badge-channel
   Blocks: 169
*/

#medal-channel { display: none; }

#medal-channel.active { display: block; }

#medal-channel-inner { max-width: 1000px; margin: 0 auto; padding: 24px 16px; width: 100%; }

#medal-codex-view { flex: 1; display: flex; flex-direction: column; }

.badge-codex {
            margin: 0;
            background: #f9fafb;
            padding: 16px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

#medal-overview-panel { flex: 1; display: flex; flex-direction: column; }

#medal-overview-panel .badge-overview-grid { flex: 1; }

#medal-detail-panel { flex: 1; display: flex; flex-direction: column; }

#medal-detail-panel .badge-grid { flex: 1; }

.badge-channel-header {
            height: 64px;
            display: flex;
            align-items: center;
            padding: 0 32px;
            background: #fff;
            border-bottom: 1px solid rgb(226 232 240 / 0.6);
        }

.badge-channel-header h1 {
            font-size: 18px;
            font-weight: 900;
            color: #111827;
            display: flex; align-items: center; gap: 8px;
            margin-right: 24px;
        }

.badge-channel-header h1 .emoji { font-size: 16px; }


.badge-channel-header .header-spacer { width: 192px; }

.badge-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 48px 8px;
            justify-content: center;
            justify-items: center;
        }

@media (min-width: 640px)  { .badge-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

@media (min-width: 768px)  { .badge-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 64px 24px; } }

@media (min-width: 1024px) { .badge-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

@media (min-width: 1280px) { .badge-grid { grid-template-columns: repeat(7, minmax(0, 1fr)); } }

.badge-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            width: 100%;
        }

.badge-card--empty {
            opacity: 0.4;
            filter: grayscale(100%);
            pointer-events: none;
        }

.badge-card--empty .badge-icon-frame {
            background: #d1d5db !important;
            box-shadow: none !important;
            animation: none !important;
        }

.badge-card--empty .badge-icon-inner {
            width: 100%; aspect-ratio: 1;
            background: #f3f4f6;
            box-shadow: inset 0 2px 4px rgb(0 0 0 / 0.05);
            display: flex; align-items: center; justify-content: center;
            border-radius: 9999px;
        }

.badge-card--empty .badge-emoji {
            filter: grayscale(100%);
            opacity: 0.5;
        }

.badge-card--empty .badge-name {
            font-size: 12px; font-weight: 900; color: #9ca3af;
        }

.badge-desc {
            font-size: 10px;
            color: #9ca3af;
            text-align: center;
            line-height: 1.3;
            margin-top: 2px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

.badge-card--empty .badge-desc {
            color: #d1d5db;
        }

.badge-card--empty .badge-rarity-label {
            color: #d1d5db !important;
            -webkit-background-clip: unset !important;
            background-clip: unset !important;
            background: none !important;
            animation: none !important;
        }

.badge-card--empty.badge-rarity-legendary .badge-rarity-label {
            color: #d1d5db !important;
            -webkit-background-clip: unset !important;
            background-clip: unset !important;
            background: none !important;
            animation: none !important;
        }

.badge-card--owned {
            position: relative;
            background: transparent;
            border: none;
            padding: 0;
            cursor: pointer;
            transition: transform 0.15s;
        }

.badge-card--owned:active { transform: scale(0.95); }

.badge-card--owned .badge-icon-wrap {
            position: relative;
            transition: transform 0.5s;
        }

.badge-card--owned:hover .badge-icon-wrap {
            transform: scale(1.1) translateY(-4px);
        }

.badge-card--owned .badge-name-wrap { pointer-events: none; }

.badge-card--owned .badge-name {
            font-size: 12px;
            font-weight: 900;
            color: #111827;
            white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
            line-height: 1.1; letter-spacing: -0.025em;
        }

@media (min-width: 640px) {
            .badge-card--owned .badge-name { font-size: 14px; }
        }

.badge-icon-frame {
            position: relative;
            padding: 3px;
            border-radius: 9999px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
        }

.badge-icon-inner {
            width: 100%; aspect-ratio: 1;
            border-radius: 9999px;
            background: #f9fafb;
            box-shadow: inset 0 2px 4px rgb(0 0 0 / 0.05);
            display: flex; align-items: center; justify-content: center;
            position: relative; overflow: hidden;
        }

.badge-icon-glow {
            position: absolute; inset: 0;
        }

.badge-icon-frame .badge-emoji {
            font-size: 32px;
            line-height: 1;
            position: relative; z-index: 10;
        }

@media (min-width: 640px) {
            .badge-icon-frame .badge-emoji { font-size: 40px; }
        }

.badge-rarity-epic .badge-icon-frame {
            background: linear-gradient(135deg, #f0abfc, #c084fc, #a855f7, #7c3aed);
            animation: epicPulse 4s ease-in-out infinite;
        }

.badge-rarity-epic .badge-icon-inner { box-shadow: 0 0 12px rgb(168 85 247 / 0.3); }

.badge-rarity-epic .badge-icon-glow { background: linear-gradient(to top right, rgb(243 232 255 / 0.3), rgb(255 255 255 / 0.2)); }

.badge-rarity-epic .badge-rarity-label { color: #a855f7; }

.badge-rarity-rare .badge-icon-frame {
            background: linear-gradient(135deg, #c084fc, #7c3aed, #7c3aed);  /* purple-400 → 500 */
            box-shadow: 0 0 12px rgb(168 85 247 / 0.25);
        }

.badge-rarity-rare .badge-icon-inner { box-shadow: 0 0 12px rgb(56 189 248 / 0.2); }

.badge-rarity-rare .badge-icon-glow { background: linear-gradient(to top right, rgb(219 234 254 / 0.4), rgb(255 255 255 / 0.2)); }

.badge-rarity-rare .badge-rarity-label { color: #2563eb; }

.badge-rarity-legendary .badge-icon-frame {
            background: linear-gradient(135deg, #C8A163, #fbbf24, #fcd34d, #fbbf24, #C8A163);
            background-size: 200% 100%;
            animation: rarityShimmer 2s infinite linear;
            box-shadow: 0 0 15px rgb(251 191 36 / 0.4);
        }

.badge-rarity-legendary .badge-icon-inner { box-shadow: 0 0 15px rgb(251 191 36 / 0.3); }

.badge-rarity-legendary .badge-rarity-label {
            background: linear-gradient(90deg, #b45309, #C8A163, #fbbf24, #C8A163, #b45309);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: rarityShimmer 2s infinite linear;
        }

.badge-rarity-common .badge-icon-frame {
            background: #f3f4f6;
            padding: 2px;
            box-shadow: 0 1px 2px rgb(0 0 0 / 0.05);
        }

.badge-rarity-common .badge-rarity-label { color: #9ca3af; }

.badge-rarity-label {
            font-size: 10px; font-weight: 900; letter-spacing: 0.05em;
            text-transform: uppercase;
            display: flex; align-items: center; justify-content: center; gap: 4px;
            margin-top: 2px;
        }

@media (min-width: 640px) {
            .badge-rarity-label { font-size: 11px; }
        }

.badge-quantity {
            position: absolute;
            bottom: -4px; right: -4px;
            z-index: 20;
            min-width: 16px; height: 16px;
            padding: 0 4px;
            background: var(--brand-500);
            color: #FFFFFF;
            border-radius: 9999px;
            font-size: 10px; font-weight: 900;
            display: flex; align-items: center; justify-content: center;
            box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
            border: 2px solid #fff;
        }

.badge-pager {
            display: flex; align-items: center; justify-content: center; gap: 8px;
            margin-top: 32px;
        }

.badge-pager button {
            padding: 8px 16px;
            background: #fff;
            border-radius: 12px;
            font-size: 14px; font-weight: 700;
            border: 1px solid #e5e7eb;
            cursor: pointer;
            color: #111827;
            font-family: inherit;
        }

.badge-pager button:hover:not(:disabled) { border-color: var(--brand-500); color: var(--brand-500); }

.badge-pager button:disabled { color: #d1d5db; cursor: not-allowed; }

.badge-pager span { padding: 0 16px; color: #6b7280; font-size: 14px; font-weight: 700; }

.badge-overview-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
            padding: 0;
        }

@media (min-width: 768px) { .badge-overview-grid { grid-template-columns: repeat(4, 1fr); } }

/* ---- 勋章频道 - 学生卡片 (v6) ---- */
.badge-overview-grid .student-card {
    display: flex; align-items: center; gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #f3f4f6;
    cursor: pointer;
    transition: all 0.15s;
    width: 100%;
    text-align: left;
    font-family: inherit;
}
.badge-overview-grid .student-card:hover {
    border-color: var(--brand-300);
    box-shadow: 0 4px 12px rgba(98, 180, 165, 0.15);
}
.badge-overview-grid .student-card .student-avatar {
    width: 64px; height: 64px;
    border-radius: 20px;
    background: #f9fafb;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px;
    flex-shrink: 0;
    overflow: hidden;
}
.badge-overview-grid .student-card .student-info { flex: 1; }
.badge-overview-grid .student-card .student-name {
    font-size: 18px; font-weight: 900; color: #111827;
}
.badge-overview-grid .student-card .student-meta {
    display: flex; align-items: center; gap: 12px;
    margin-top: 6px;
    font-size: 13px; color: #9ca3af; font-weight: 600;
}
.badge-overview-grid .student-card .student-meta .meta-pending { color: #f59e0b; font-weight: 700; }
.badge-overview-grid .student-card .student-arrow {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--brand-50);
    border: 1px solid var(--brand-300);
    display: flex; align-items: center; justify-content: center;
    color: var(--brand-500);
    font-size: 18px;
    flex-shrink: 0;
}

.badge-empty {
            text-align: center;
            padding: 80px 20px;
            color: #6b7280;
        }

.badge-empty-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.5; }

.badge-open-box {
            padding: 40px 20px;
            min-height: 400px;
            text-align: center;
        }

.badge-open-box .hint { font-size: 13px; color: #6b7280; margin-bottom: 20px; }

.badge-open-box .empty-icon { font-size: 64px; margin-bottom: 16px; opacity: 0.4; }

.badge-stats-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-bottom: 20px;
        }

@media (max-width: 639px) { .badge-stats-cards { grid-template-columns: repeat(3, 1fr); gap: 8px; } }

.badge-stat-card {
            background: #fff;
            border: 1px solid #f3f4f6;
            border-radius: 16px;
            padding: 16px;
        }

.badge-stat-card .stat-label {
            font-size: 11px; color: #9ca3af; font-weight: 600;
            margin-bottom: 6px;
        }

.badge-stat-card .stat-value {
            font-size: 22px; font-weight: 900; color: #111827;
        }

.badge-stat-card.stat-collect .stat-value { color: #ef4444; }

.badge-stat-card.stat-pending .stat-value { color: #C8A163; }

.badge-detail-bar {
            display: flex; align-items: center; gap: 12px;
            flex-wrap: wrap;
        }

.badge-detail-bar .back-student-btn {
            padding: 8px 12px;
            background: #fff;
            border: 1px solid #e5e7eb;
            border-radius: 12px;
            font-size: 14px; font-weight: 700;
            color: #111827;
            cursor: pointer;
            display: flex; align-items: center; gap: 8px;
            font-family: inherit;
        }

.badge-detail-bar .back-student-btn:hover { border-color: var(--brand-500); color: var(--brand-500); }

.badge-detail-bar .back-student-btn .count {
            color: #9ca3af; font-weight: 400;
        }

.badge-rarity-tabs {
            background: #fff;
            border-radius: 16px;
            padding: 4px;
            display: flex;
            border: 1px solid #f3f4f6;
            gap: 4px;
        }

.badge-rarity-tabs button {
            padding: 6px 12px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 900;
            border: none;
            background: transparent;
            cursor: pointer;
            color: #6b7280;
            font-family: inherit;
            transition: all 0.15s;
        }

.badge-rarity-tabs button.active {
            background: var(--brand-500);
            color: #FFFFFF;
        }

.badge-rarity-tabs button:not(.active):hover { color: #111827; }

.badge-rarity-tabs .fragment-hint {
            margin-left: 4px;
            font-size: 12px; color: #9ca3af;
            display: flex; align-items: center;
        }

.badge-get-modal {
            position: fixed; inset: 0;
            background: rgba(15, 23, 42, 0.6);
            display: flex; align-items: center; justify-content: center;
            z-index: 1000;
        }

.badge-get-modal .modal-card {
            width: 360px;
            background: #fff;
            border-radius: 24px;
            padding: 32px 24px 24px;
            box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
            text-align: center;
        }

.badge-get-modal .modal-icon {
            width: 160px; height: 160px;
            margin: 0 auto 20px;
            border-radius: 9999px;
            padding: 4px;
            display: flex; align-items: center; justify-content: center;
        }

.badge-get-modal .modal-icon > div {
            width: 100%; height: 100%;
            border-radius: 9999px;
            background: #f9fafb;
            display: flex; align-items: center; justify-content: center;
            overflow: hidden;
        }

.badge-get-modal .modal-name {
            font-size: 18px; font-weight: 900; color: #111827;
            margin-bottom: 8px;
        }

.badge-get-modal .modal-rarity {
            display: inline-block;
            padding: 2px 10px;
            border-radius: 6px;
            font-size: 12px; font-weight: 900;
            margin-bottom: 16px;
        }

.badge-get-modal .modal-rarity.rarity-common { color: #9ca3af; background: #f3f4f6; }

.badge-get-modal .modal-rarity.rarity-rare { color: #2563eb; background: #dbeafe; }

.badge-get-modal .modal-rarity.rarity-epic { color: #a855f7; background: #f3e8ff; }

.badge-get-modal .modal-rarity.rarity-legendary { color: #C8A163; background: var(--brand-50); }

.badge-get-modal .modal-desc {
            font-size: 13px; line-height: 1.7;
            color: #4B5563;
            padding: 0 8px;
            margin-bottom: 20px;
        }

.badge-get-modal .modal-done {
            width: 100%;
            padding: 12px;
            background: #111827;
            color: #111827;
            border: none;
            border-radius: 12px;
            font-size: 14px; font-weight: 900;
            cursor: pointer;
            font-family: inherit;
        }

.badge-get-modal .modal-reward {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 20px;
        }

.badge-get-modal .reward-badge {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            padding: 4px 12px;
            border-radius: 9999px;
            font-size: 13px;
            font-weight: 900;
            background: #f0fdf4;
            color: #16a34a;
        }

.badge-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }

.badge-card {
            position: relative;
            height: 180px;
            padding: 14px 16px;
            background: #FFFEFE;
            border: 1px solid #F3F4F6;
            border-radius: 14px;
            display: flex; flex-direction: column; align-items: center;
            gap: 6px;
            box-shadow: 0 1px 3px rgba(15,23,42,0.04);
            cursor: pointer;
            font-family: inherit;
            transition: all .2s;
        }

.badge-card:hover { transform: translateY(-2px); }

.badge-rarity-chip {
            position: absolute; top: 8px; left: 8px;
            padding: 2px 9px;
            border-radius: 99px;
            font-size: 10px; color: #111827;
            font-weight: 600; z-index: 2;
        }

.badge-card.rarity-common .badge-rarity-chip { background: #9CA3AF; }

.badge-card.rarity-rare .badge-rarity-chip {
            background: linear-gradient(135deg, #7C3AED, #A855F7);
        }

.badge-icon-wrap {
            width: 72px; height: 72px;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            background: #F9FAFB;
            margin: 2px 0;
        }

.badge-card.rarity-rare .badge-icon-wrap {
            background: linear-gradient(135deg, #F3E8FF, #FAF5FF);
            box-shadow: 0 0 0 3px #DDD6FE;
        }

.badge-icon-placeholder { font-size: 36px; }

.badge-name {
            font-size: 13px; font-weight: 600;
            text-align: center; color: #111827;
        }

.badge-price {
            display: flex; align-items: baseline; gap: 3px;
        }

.badge-price .num { font-size: 18px; font-weight: 800; color: var(--brand-500); }

.badge-price .unit { color: #6B7280; font-size: 12px; font-weight: 500; }

.badge-tip {
          display: flex;
          align-items: center;
          gap: 8px;
          padding: 12px 16px;
          background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
          border-radius: 12px;
          border: 1px solid rgba(226,232,240,0.9);
          font-size: 13px;
          color: var(--slate-600);
          margin-bottom: 16px;
        }

.badge-tip-icon { font-size: 18px; }

.badge-grid {
          display: grid;
          grid-template-columns: repeat(4, 1fr);
          gap: 10px;
        }

.badge-card {
          position: relative;
          border: 2px solid rgba(226,232,240,0.9);
          border-radius: 12px;
          padding: 14px 6px;
          text-align: center;
          cursor: pointer;
          transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
          background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
          box-shadow: 0 1px 3px rgba(0,0,0,0.04);
        }

.badge-card:hover:not(.disabled) {
          border-color: #b8b8ff;
          box-shadow: 0 3px 12px rgba(0,0,0,0.08);
          transform: translateY(-1px);
        }

.badge-card.selected {
          border-color: #7b5cff;
          background: linear-gradient(180deg, #f5f3ff 0%, #ede9fe 100%);
          box-shadow: 0 3px 12px rgba(123,92,255,0.2);
        }

.badge-card.disabled {
          opacity: 0.45;
          cursor: not-allowed;
          background: #f9fafb;
        }

.badge-icon { font-size: 28px; margin-bottom: 6px; }

.badge-name { font-size: 12px; font-weight: 600; color: var(--slate-700); margin-bottom: 4px; line-height: 1.3; }

.badge-rarity {
          display: inline-block;
          font-size: 10px;
          padding: 2px 8px;
          border-radius: 9999px;
          font-weight: 600;
        }

.badge-rarity-common { background: #f3f4f6; color: #6b7280; }

.badge-rarity-epic { background: #fdf2f8; color: #ec4899; }

.badge-rarity-rare { background: #eff6ff; color: #2563eb; }

.badge-locked {
          position: absolute;
          top: 6px;
          right: 6px;
          background: var(--slate-500);
          color: #111827;
          font-size: 9px;
          padding: 2px 6px;
          border-radius: 6px;
          font-weight: 700;
        }

.badge-preview {
          display: flex;
          align-items: center;
          gap: 12px;
          padding: 14px 16px;
          background: linear-gradient(180deg, #f9fafb 0%, #f3f4f6 100%);
          border-radius: 12px;
          border: 1px solid rgba(226,232,240,0.9);
        }

.badge-preview-icon {
          font-size: 28px;
          width: 44px; height: 44px;
          display: flex;
          align-items: center; justify-content: center;
          background: #fff;
          border-radius: 10px;
          border: 1px solid rgba(226,232,240,0.9);
        }

.badge-preview-name { font-size: 14px; font-weight: 700; color: var(--slate-800); }

.badge-preview-tag {
          margin-left: auto;
          font-size: 11px;
          padding: 3px 10px;
          border-radius: 9999px;
          font-weight: 600;
        }

.badge-preview-tag.common { background: #f3f4f6; color: #6b7280; }

.badge-preview-tag.epic { background: #fdf2f8; color: #ec4899; }

.badge-preview-tag.rare { background: #eff6ff; color: #2563eb; }

.badge-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

@media (max-width: 640px) { .badge-grid-3 { grid-template-columns: repeat(2, 1fr); } }

.badge-card { display: flex; flex-direction: column; align-items: center; cursor: pointer; transition: all .2s; padding: 20px 16px; background: #fff; border: 2px solid #F3F4F6; border-radius: 16px; box-sizing: border-box; min-height: 150px; }

.badge-card:hover { border-color: var(--brand-200); }

.badge-card.selected { background: #FAF5FF; border-color: #A855F7; }

.badge-card-icon-frame { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: #F3F4F6; flex-shrink: 0; border: 3px solid #E5E7EB; }

.badge-card-icon-inner { width: 100%; height: 100%; border-radius: 50%; display: flex; align-items: center; justify-content: center; overflow: hidden; }

.badge-card-emoji { font-size: 44px; line-height: 1; }

.badge-card-name { font-size: 14px; font-weight: 600; color: #111827; margin-top: 12px; text-align: center; line-height: 1.3; }

.badge-card-desc { font-size: 12px; color: #6B7280; line-height: 1.4; text-align: center; margin-top: 6px; }

.badge-student-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }

.badge-student-btn { text-align: left; transition: all .2s; height: 44px; padding: 10px 12px; border-radius: 12px; background: #F9FAFB; border: 2px solid #F3F4F6; color: #374151; font-size: 14px; font-weight: 500; cursor: pointer; width: 100%; }

/* ====== 勋章显示/隐藏开关 ====== */
.badge-vis-toggle {
    position: absolute; top: -4px; right: -4px;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: white;
    border: 2px solid #e5e7eb;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    cursor: pointer;
    z-index: 2;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.badge-vis-toggle:hover {
    transform: scale(1.2);
    border-color: #9ca3af;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.badge-vis-toggle.vis-hidden {
    background: #f3f4f6;
    border-color: #d1d5db;
    opacity: 0.65;
}
.badge-hidden-flag { opacity: 0.7; }
.badge-hidden-flag .badge-icon-frame { filter: grayscale(0.5); }

.badge-student-btn:hover { background: var(--brand-50); border-color: var(--brand-200); }

.badge-student-btn.selected { background: #FAF5FF; border-color: #A855F7; color: #7E22CE; }

.badge-step-btn { width: 100%; padding: 10px 16px; font-size: 13px; font-weight: 600; border-radius: 12px; transition: all .2s; border: none; cursor: pointer; height: 40px; }

.badge-step-btn:disabled { background: #F3F4F6; color: #9CA3AF; cursor: not-allowed; }

.badge-step-btn:not(:disabled) { background: #A855F7; color: #FFFFFF; }

.badge-step-btn:not(:disabled):hover { background: #9333EA; }

.badge-modal-body { flex: 1; overflow-y: auto; padding: 0 20px 12px; }

.badge-awarded-card { display: flex; align-items: center; gap: 12px; padding: 10px 12px; border-radius: 12px; border: 1px solid #F3F4F6; background: #fff; margin-bottom: 8px; }

.badge-awarded-img { width: 36px; height: 36px; border-radius: 8px; background: #F3F4F6; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.badge-awarded-emoji { font-size: 24px; }

.badge-awarded-info { flex: 1; min-width: 0; }

.badge-awarded-name { font-size: 14px; font-weight: 500; color: #111827; }

.badge-awarded-name .student-name { color: #9333EA; font-weight: 600; }

.badge-awarded-name .separator { color: #9CA3AF; margin: 0 4px; }

.badge-awarded-time { font-size: 12px; color: #9CA3AF; white-space: nowrap; }
