/**
 * Accountability Module — Styles
 * Follows Command Center design patterns (.omm-card, .omm-btn, etc.)
 * Supports dark mode via existing CSS variables.
 *
 * @since v452
 */

/* ─── Layout ─────────────────────────────────────────── */

.acct-wrap {
    padding: 0;
}

.acct-view-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.acct-back-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.acct-viewing-label {
    font-size: 14px;
    color: var(--text-secondary, #666);
}

.acct-empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-secondary, #666);
}

.acct-empty-state .acct-empty-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.acct-empty-state h3 {
    margin: 0 0 8px;
    color: var(--text-primary, #1d1d1f);
}

.acct-empty-state p {
    max-width: 400px;
    margin: 0 auto;
}

/* ─── Stats Row ──────────────────────────────────────── */

.acct-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.acct-stat-card {
    text-align: center;
    padding: 20px 16px;
}

.acct-stat-value {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary, #1d1d1f);
}

.acct-stat-label {
    font-size: 13px;
    color: var(--text-secondary, #666);
    margin-top: 4px;
}

.acct-stat-green { color: #16a34a; }
.acct-stat-red   { color: #dc2626; }
.acct-stat-yellow { color: #d97706; }

/* ─── Filter Bar ─────────────────────────────────────── */

.acct-filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding: 12px 16px;
    background: var(--card-bg, #fff);
    border-radius: 12px;
    border: 1px solid var(--border-light, #e5e5e7);
}

.acct-filter-input {
    flex: 1;
    min-width: 180px;
    padding: 8px 12px;
    border: 1px solid var(--border-light, #e5e5e7);
    border-radius: 8px;
    background: var(--input-bg, #f5f5f7);
    color: var(--text-primary, #1d1d1f);
    font-size: 14px;
    outline: none;
    transition: border-color 0.15s;
}

.acct-filter-input:focus {
    border-color: var(--primary-color, #E21B4D);
}

.acct-filter-select {
    padding: 8px 12px;
    border: 1px solid var(--border-light, #e5e5e7);
    border-radius: 8px;
    background: var(--input-bg, #f5f5f7);
    color: var(--text-primary, #1d1d1f);
    font-size: 13px;
    cursor: pointer;
    outline: none;
}

.acct-select-all-wrap {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    color: var(--text-secondary, #666);
    cursor: pointer;
    white-space: nowrap;
}

.acct-bulk-btn {
    white-space: nowrap;
}

/* ─── Student Grid ───────────────────────────────────── */

.acct-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

/* ─── Student Card ───────────────────────────────────── */

.acct-student-card {
    position: relative;
    padding: 16px;
    transition: box-shadow 0.15s, transform 0.15s;
}

.acct-student-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.acct-student-card.acct-card-hidden {
    display: none;
}

.acct-card-check {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
}

.acct-card-check input {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.acct-card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.acct-card-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.acct-card-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.acct-card-info {
    flex: 1;
    min-width: 0;
}

.acct-card-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary, #1d1d1f);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.acct-card-meta {
    font-size: 12px;
    color: var(--text-secondary, #666);
    margin-top: 2px;
}

/* ─── Health Badge ───────────────────────────────────── */

.acct-health-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}

.acct-health-green  { background: #dcfce7; color: #16a34a; }
.acct-health-yellow { background: #fef3c7; color: #d97706; }
.acct-health-red    { background: #fecaca; color: #dc2626; }

.acct-health-lg {
    width: 56px;
    height: 56px;
    font-size: 20px;
    border-radius: 14px;
}

/* ─── Card Stats Row ─────────────────────────────────── */

.acct-card-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 10px 0;
    border-top: 1px solid var(--border-light, #e5e5e7);
    border-bottom: 1px solid var(--border-light, #e5e5e7);
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--text-secondary, #666);
}

.acct-card-stats strong {
    color: var(--text-primary, #1d1d1f);
}

/* ─── Card Actions ───────────────────────────────────── */

.acct-card-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.acct-card-actions .omm-btn-sm {
    font-size: 12px;
    padding: 5px 10px;
}

.acct-mentoring-badge {
    margin-left: auto;
    font-size: 14px;
    cursor: default;
    opacity: 0.6;
}

.acct-remove-btn {
    margin-left: auto;
    opacity: 0.4;
    transition: opacity 0.15s;
}

.acct-student-card:hover .acct-remove-btn,
.acct-table-row:hover .acct-remove-btn {
    opacity: 1;
}

.acct-remove-btn:hover {
    color: #dc2626 !important;
    opacity: 1;
}

/* ─── View Toggle ────────────────────────────────────── */

.acct-view-toggle-bar {
    display: flex;
    border: 1px solid var(--border-light, #e5e5e7);
    border-radius: 8px;
    overflow: hidden;
}

.acct-view-btn-toggle {
    padding: 6px 12px;
    background: var(--input-bg, #f5f5f7);
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: var(--text-secondary, #666);
    transition: all 0.15s;
    font-family: inherit;
    line-height: 1;
}

.acct-view-btn-toggle:not(:last-child) {
    border-right: 1px solid var(--border-light, #e5e5e7);
}

.acct-view-btn-toggle.active {
    background: var(--primary-color, #E21B4D);
    color: #fff;
}

/* ─── Student Table View ─────────────────────────────── */

.acct-table-wrap {
    overflow-x: auto;
}

.acct-student-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg, #fff);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light, #e5e5e7);
    font-size: 13px;
}

.acct-student-table thead {
    background: var(--input-bg, #f5f5f7);
}

.acct-student-table th {
    padding: 10px 12px;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary, #666);
    border-bottom: 1px solid var(--border-light, #e5e5e7);
    white-space: nowrap;
}

.acct-student-table td {
    padding: 10px 12px;
    color: var(--text-primary, #1d1d1f);
    border-bottom: 1px solid var(--border-light, #e5e5e7);
    white-space: nowrap;
}

.acct-student-table tr:last-child td {
    border-bottom: none;
}

.acct-student-table tbody tr:hover {
    background: var(--input-bg, #f5f5f7);
}

.acct-table-row.acct-card-hidden {
    display: none;
}

.acct-th-check {
    width: 36px;
}

.acct-table-name-cell {
    display: flex;
    align-items: center;
    gap: 8px;
}

.acct-table-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.acct-health-sm {
    width: 32px;
    height: 26px;
    font-size: 12px;
    border-radius: 6px;
}

.acct-table-actions {
    display: flex;
    gap: 4px;
}

.acct-table-actions .omm-btn-sm {
    padding: 3px 8px;
    font-size: 12px;
}

/* ─── Admin Table ────────────────────────────────────── */

.acct-admin-table-wrap {
    overflow-x: auto;
}

.acct-admin-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg, #fff);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-light, #e5e5e7);
}

.acct-admin-table thead {
    background: var(--input-bg, #f5f5f7);
}

.acct-admin-table th {
    padding: 12px 16px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary, #666);
    border-bottom: 1px solid var(--border-light, #e5e5e7);
}

.acct-admin-table td {
    padding: 14px 16px;
    font-size: 14px;
    color: var(--text-primary, #1d1d1f);
    border-bottom: 1px solid var(--border-light, #e5e5e7);
}

.acct-admin-table tr:last-child td {
    border-bottom: none;
}

.acct-admin-table tbody tr:hover {
    background: var(--input-bg, #f5f5f7);
}

.acct-staff-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.acct-staff-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-color, #E21B4D);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.acct-staff-name {
    font-weight: 600;
    font-size: 14px;
}

.acct-staff-email {
    font-size: 12px;
    color: var(--text-secondary, #666);
}

/* ─── Modal Overlay ──────────────────────────────────── */

.acct-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: acctFadeIn 0.15s ease;
}

.acct-modal {
    background: var(--card-bg, #fff);
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: acctSlideUp 0.2s ease;
}

.acct-modal-lg {
    max-width: 600px;
}

.acct-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light, #e5e5e7);
}

.acct-modal-head h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.acct-modal-close {
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--text-secondary, #666);
    padding: 0 4px;
    line-height: 1;
}

.acct-modal-close:hover {
    color: var(--text-primary, #1d1d1f);
}

.acct-modal-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.acct-modal-foot {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 16px 20px;
    border-top: 1px solid var(--border-light, #e5e5e7);
}

/* ─── Form Elements ──────────────────────────────────── */

.acct-form-group {
    margin-bottom: 14px;
}

.acct-form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary, #666);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.acct-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-light, #e5e5e7);
    border-radius: 8px;
    background: var(--input-bg, #f5f5f7);
    color: var(--text-primary, #1d1d1f);
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
}

.acct-input:focus {
    border-color: var(--primary-color, #E21B4D);
}

.acct-input-sm {
    padding: 6px 10px;
    font-size: 13px;
    width: auto;
}

.acct-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-light, #e5e5e7);
    border-radius: 8px;
    background: var(--input-bg, #f5f5f7);
    color: var(--text-primary, #1d1d1f);
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
}

.acct-textarea:focus {
    border-color: var(--primary-color, #E21B4D);
}

.acct-email-recipients {
    padding: 8px 12px;
    background: var(--input-bg, #f5f5f7);
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-secondary, #666);
    margin-bottom: 14px;
}

/* ─── Merge Tags ─────────────────────────────────────── */

.acct-merge-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.acct-merge-tag {
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 20px;
    border: 1px solid var(--border-light, #e5e5e7);
    background: var(--input-bg, #f5f5f7);
    color: var(--primary-color, #E21B4D);
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}

.acct-merge-tag:hover {
    background: var(--primary-color, #E21B4D);
    color: #fff;
    border-color: var(--primary-color, #E21B4D);
}

/* ─── Student Detail Drawer ──────────────────────────── */

.acct-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 9998;
}

.acct-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 480px;
    max-width: 100%;
    height: 100vh;
    background: var(--card-bg, #fff);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    animation: acctDrawerSlide 0.25s ease;
}

.acct-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light, #e5e5e7);
}

.acct-drawer-head h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.acct-drawer-tabs {
    display: flex;
    border-bottom: 1px solid var(--border-light, #e5e5e7);
    padding: 0 20px;
}

.acct-drawer-tab {
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary, #666);
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.15s;
    font-family: inherit;
}

.acct-drawer-tab:hover {
    color: var(--text-primary, #1d1d1f);
}

.acct-drawer-tab.active {
    color: var(--primary-color, #E21B4D);
    border-bottom-color: var(--primary-color, #E21B4D);
}

.acct-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.acct-drawer-loading {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary, #666);
}

/* ─── Panel: Overview ────────────────────────────────── */

.acct-panel-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.acct-panel-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
}

.acct-panel-header h3 {
    margin: 0;
    font-size: 18px;
}

.acct-panel-header p {
    margin: 4px 0 0;
    font-size: 13px;
    color: var(--text-secondary, #666);
}

.acct-panel-health-breakdown {
    margin-bottom: 20px;
}

.acct-panel-health-breakdown h4 {
    margin: 0 0 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary, #666);
}

.acct-breakdown-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    font-size: 13px;
}

.acct-breakdown-row > span:first-child {
    width: 130px;
    flex-shrink: 0;
    color: var(--text-secondary, #666);
}

.acct-breakdown-row > span:last-child {
    width: 45px;
    text-align: right;
    font-weight: 600;
    font-size: 12px;
    color: var(--text-primary, #1d1d1f);
}

.acct-bar {
    flex: 1;
    height: 8px;
    background: var(--input-bg, #f0f0f0);
    border-radius: 4px;
    overflow: hidden;
}

.acct-bar-fill {
    height: 100%;
    background: var(--primary-color, #E21B4D);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.acct-panel-quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.acct-qs {
    text-align: center;
    padding: 12px 8px;
    background: var(--input-bg, #f5f5f7);
    border-radius: 10px;
}

.acct-qs strong {
    display: block;
    font-size: 20px;
    color: var(--text-primary, #1d1d1f);
}

.acct-qs span {
    font-size: 11px;
    color: var(--text-secondary, #666);
}

/* ─── Panel: Timeline ────────────────────────────────── */

.acct-timeline {
    position: relative;
}

.acct-timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light, #e5e5e7);
}

.acct-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 0;
    position: relative;
}

.acct-tl-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg, #fff);
    border: 2px solid var(--border-light, #e5e5e7);
    border-radius: 50%;
    font-size: 14px;
    flex-shrink: 0;
    z-index: 1;
}

.acct-tl-content {
    flex: 1;
    min-width: 0;
}

.acct-tl-text {
    display: block;
    font-size: 13px;
    color: var(--text-primary, #1d1d1f);
    line-height: 1.4;
}

.acct-tl-date {
    font-size: 11px;
    color: var(--text-secondary, #999);
}

.acct-empty-timeline {
    text-align: center;
    padding: 30px;
    color: var(--text-secondary, #666);
}

/* ─── Panel: Notes ───────────────────────────────────── */

.acct-add-note-form {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light, #e5e5e7);
}

.acct-note-form-actions {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    align-items: center;
}

.acct-note-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light, #e5e5e7);
}

.acct-note-item:last-child {
    border-bottom: none;
}

.acct-note-meta {
    font-size: 11px;
    color: var(--text-secondary, #999);
    margin-bottom: 4px;
}

.acct-note-badge {
    display: inline-block;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.acct-badge-tp {
    background: #dbeafe;
    color: #2563eb;
}

.acct-badge-pin {
    background: #fef3c7;
    color: #d97706;
}

.acct-note-content {
    font-size: 13px;
    color: var(--text-primary, #1d1d1f);
    line-height: 1.5;
}

.acct-no-data {
    text-align: center;
    padding: 20px;
    color: var(--text-secondary, #666);
    font-size: 13px;
}

/* ─── Panel: Growth ──────────────────────────────────── */

.acct-growth-item {
    display: flex;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light, #e5e5e7);
}

.acct-growth-item:last-child {
    border-bottom: none;
}

.acct-growth-icon {
    font-size: 20px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--input-bg, #f5f5f7);
    border-radius: 8px;
    flex-shrink: 0;
}

.acct-growth-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary, #1d1d1f);
}

.acct-growth-meta {
    font-size: 12px;
    color: var(--text-secondary, #666);
    margin-top: 2px;
}

.acct-growth-note {
    font-size: 12px;
    color: var(--text-secondary, #888);
    margin-top: 4px;
    font-style: italic;
}

.acct-ms-achieved .acct-growth-icon { background: #dcfce7; }
.acct-ms-practicing .acct-growth-icon { background: #dbeafe; }
.acct-ms-mentioned .acct-growth-icon { background: #f5f5f7; }

/* ─── Assign Modal Extras ────────────────────────────── */

.acct-assign-results {
    max-height: 200px;
    overflow-y: auto;
    margin: 10px 0;
}

.acct-assign-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.1s;
}

.acct-assign-item:hover {
    background: var(--input-bg, #f5f5f7);
}

.acct-assign-item input {
    width: 16px;
    height: 16px;
}

.acct-assign-selected {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.acct-assign-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--primary-color, #E21B4D);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
}

.acct-assign-chip-remove {
    cursor: pointer;
    font-weight: bold;
    opacity: 0.7;
}

.acct-assign-chip-remove:hover {
    opacity: 1;
}

/* ─── Animations ─────────────────────────────────────── */

@keyframes acctFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes acctSlideUp {
    from { transform: translateY(20px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

@keyframes acctDrawerSlide {
    from { transform: translateX(100%); }
    to   { transform: translateX(0); }
}

/* ─── Dark Mode ──────────────────────────────────────── */

[data-theme="dark"] .acct-health-green  { background: rgba(22, 163, 74, 0.15); }
[data-theme="dark"] .acct-health-yellow { background: rgba(217, 119, 6, 0.15); }
[data-theme="dark"] .acct-health-red    { background: rgba(220, 38, 38, 0.15); }
[data-theme="dark"] .acct-badge-tp      { background: rgba(37, 99, 235, 0.15); }
[data-theme="dark"] .acct-badge-pin     { background: rgba(217, 119, 6, 0.15); }

/* ─── Responsive ─────────────────────────────────────── */

@media (max-width: 1024px) {
    .acct-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .acct-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .acct-panel-quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .acct-grid {
        grid-template-columns: 1fr;
    }
    .acct-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .acct-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }
    .acct-filter-input {
        min-width: 100%;
    }
    .acct-drawer {
        width: 100%;
    }
    .acct-panel-header {
        flex-wrap: wrap;
    }
    .acct-panel-quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .acct-breakdown-row > span:first-child {
        width: 100px;
    }
}
