.user-dashboard-page {
    background: #f7faf8;
    color: #1f2933;
    min-height: 100vh;
}

.user-dashboard-page a {
    color: inherit;
}

.dashboard-hero {
    background: linear-gradient(180deg, #fbfdfb 0%, #eef7f2 100%);
    border-bottom: 1px solid #dfece5;
    color: #1f2933;
    padding: 24px 0 22px;
}

.dashboard-breadcrumb {
    align-items: center;
    color: #64727e;
    display: flex;
    flex-wrap: wrap;
    font-size: 13px;
    gap: 8px;
    margin-bottom: 12px;
}

.dashboard-breadcrumb a {
    color: #214252;
    font-weight: 700;
}

.dashboard-hero-grid {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
}

.dashboard-hero-copy {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid #e3ece7;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(31, 45, 61, 0.06);
    padding: 22px;
}

.dashboard-eyebrow {
    color: #c8293d;
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.dashboard-hero h1 {
    color: #1e3440;
    font-size: 30px;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.16;
    margin: 0 0 8px;
    max-width: 780px;
}

.dashboard-hero p {
    color: #536371;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
    max-width: 720px;
}

.dashboard-hero-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.dashboard-workspace-card {
    background: #fff;
    border: 1px solid #e0ebe6;
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(31, 45, 61, 0.08);
    display: grid;
    gap: 10px;
    padding: 10px;
}

.dashboard-workspace-image {
    --dashboard-hero-image: url("/images/dashboard-study-hero.jpg");
    background-color: #eaf4ef;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(33, 66, 82, 0.22)),
        var(--dashboard-hero-image),
        linear-gradient(135deg, #fff8ed 0%, #e9f5f1 52%, #eaf3ff 100%);
    background-position: center;
    background-size: cover;
    border-radius: 8px;
    min-height: 150px;
    position: relative;
}

.dashboard-workspace-badge {
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    bottom: 12px;
    box-shadow: 0 10px 24px rgba(31, 45, 61, 0.12);
    color: #214252;
    display: inline-flex;
    font-size: 12px;
    font-weight: 850;
    gap: 6px;
    left: 12px;
    padding: 8px 11px;
    position: absolute;
}

.dashboard-hero-card {
    background: #f8fbfd;
    border: 1px solid #e5edf3;
    border-radius: 8px;
    padding: 12px;
}

.dashboard-user-mini {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
}

.dashboard-user-mini span,
.dashboard-hero-score span {
    color: #657586;
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.dashboard-user-mini strong {
    color: #1e3440;
    display: block;
    font-size: 17px;
    font-weight: 850;
    line-height: 1.25;
    margin-top: 3px;
    overflow-wrap: anywhere;
}

.dashboard-user-mini i {
    align-items: center;
    background: #eef6f7;
    border: 1px solid #d9e9ec;
    border-radius: 8px;
    color: #214252;
    display: inline-flex;
    font-size: 18px;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.dashboard-hero-score {
    background: #fff;
    border: 1px solid #e7eef3;
    border-radius: 8px;
    margin-top: 10px;
    padding: 12px;
}

.dashboard-hero-score strong {
    color: #214252;
    display: block;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    margin: 6px 0;
}

.dashboard-hero-score p {
    color: #64727e;
    font-size: 12px;
    line-height: 1.45;
    margin-top: 7px;
}

.dashboard-account-meta {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.dashboard-account-meta span {
    align-items: center;
    color: #536371;
    display: flex;
    font-size: 12px;
    gap: 8px;
}

.dashboard-content {
    padding: 24px 0 58px;
}

.dashboard-stat-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
}

.dashboard-stat-card,
.dashboard-panel,
.dashboard-empty,
.dashboard-roadmap-banner {
    background: #fff;
    border: 1px solid #e1e8ef;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(31, 45, 61, 0.07);
}

.dashboard-stat-card {
    min-height: 132px;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.dashboard-stat-card::before {
    border-radius: 999px;
    content: "";
    display: block;
    height: 4px;
    left: 16px;
    position: absolute;
    right: 16px;
    top: 0;
}

.dashboard-stat-card:nth-child(1)::before {
    background: #2f7d5b;
}

.dashboard-stat-card:nth-child(2)::before {
    background: #d48a1f;
}

.dashboard-stat-card:nth-child(3)::before {
    background: #0b74d1;
}

.dashboard-stat-card:nth-child(4)::before {
    background: #c8293d;
}

.dashboard-stat-top {
    align-items: center;
    display: flex;
    gap: 9px;
    margin-bottom: 10px;
}

.dashboard-stat-icon {
    align-items: center;
    background: #eef6f7;
    border: 1px solid #d9e9ec;
    border-radius: 8px;
    color: #214252;
    display: inline-flex;
    flex: 0 0 auto;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.dashboard-stat-card:nth-child(1) .dashboard-stat-icon {
    background: #eaf7f0;
    border-color: #c7ead7;
    color: #2f7d5b;
}

.dashboard-stat-card:nth-child(2) .dashboard-stat-icon {
    background: #fff7e8;
    border-color: #f3d39b;
    color: #9a5b00;
}

.dashboard-stat-card:nth-child(3) .dashboard-stat-icon {
    background: #e9f5ff;
    border-color: #b9ddff;
    color: #0b5b9e;
}

.dashboard-stat-card:nth-child(4) .dashboard-stat-icon {
    background: #fff0f2;
    border-color: #f3bdc6;
    color: #a51f32;
}

.dashboard-stat-card small,
.dashboard-section-label {
    color: #657586;
    display: block;
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0;
    margin-bottom: 0;
    text-transform: uppercase;
}

.dashboard-section-label {
    margin-bottom: 8px;
}

.dashboard-stat-value {
    color: #214252;
    font-size: 27px;
    font-weight: 900;
    line-height: 1.1;
}

.dashboard-stat-note {
    color: #617282;
    font-size: 13px;
    line-height: 1.45;
    margin: 9px 0 0;
}

.dashboard-mini-bars {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.dashboard-mini-bars > div {
    display: grid;
    gap: 5px;
}

.dashboard-mini-bars span {
    color: #617282;
    font-size: 12px;
    font-weight: 800;
}

.dashboard-mini-bars strong {
    color: #214252;
    font-size: 13px;
    font-weight: 900;
}

.dashboard-roadmap-banner {
    align-items: center;
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1fr) auto auto;
    margin-bottom: 18px;
    padding: 18px 20px;
}

.dashboard-roadmap-copy h2 {
    color: #214252;
    font-size: 22px;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.25;
    margin: 0;
}

.dashboard-roadmap-copy p {
    color: #64727e;
    line-height: 1.55;
    margin: 7px 0 0;
    max-width: 660px;
}

.dashboard-roadmap-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
}

.dashboard-roadmap-steps span {
    background: #f6fafb;
    border: 1px solid #dfeaf0;
    border-radius: 999px;
    color: #324957;
    font-size: 12px;
    font-weight: 850;
    padding: 8px 10px;
    white-space: nowrap;
}

.dashboard-main-grid {
    align-items: start;
    display: grid;
    gap: 14px;
    grid-template-columns: minmax(0, 1fr) 320px;
}

.dashboard-panel {
    margin-bottom: 14px;
    overflow: hidden;
}

.dashboard-panel-header {
    align-items: flex-start;
    border-bottom: 1px solid #edf1f5;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 14px 16px;
}

.dashboard-panel-header h2 {
    color: #214252;
    font-size: 19px;
    font-weight: 850;
    letter-spacing: 0;
    line-height: 1.3;
    margin: 0;
}

.dashboard-panel-header p {
    color: #6b7b88;
    font-size: 13px;
    margin: 4px 0 0;
}

.dashboard-panel-body {
    padding: 14px 16px 16px;
}

.dashboard-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dashboard-button {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-size: 14px;
    font-weight: 850;
    gap: 7px;
    justify-content: center;
    min-height: 40px;
    padding: 0 13px;
    text-decoration: none;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
    white-space: nowrap;
}

.dashboard-button:hover {
    transform: translateY(-1px);
}

.dashboard-button-primary {
    background: #c8293d;
    border: 1px solid #c8293d;
    color: #fff !important;
}

.dashboard-button-primary:hover {
    background: #a91f31;
    border-color: #a91f31;
}

.dashboard-button-secondary {
    background: #fff;
    border: 1px solid #cbd6df;
    color: #214252 !important;
}

.dashboard-button-secondary:hover {
    background: #f3f7fa;
}

.dashboard-button-soft {
    background: #eef7f2;
    border: 1px solid #cfe7da;
    color: #214252 !important;
}

.dashboard-button-soft:hover {
    background: #e3f1ea;
    border-color: #b9dcc9;
}

.dashboard-button-disabled {
    background: #eef2f5;
    border: 1px solid #dde5eb;
    color: #8a99a6 !important;
    cursor: not-allowed;
}

.dashboard-button-disabled:hover {
    transform: none;
}

.dashboard-compact-list {
    display: grid;
    gap: 8px;
    padding: 10px 12px 12px;
}

.dashboard-result-card {
    align-items: center;
    background: #fbfdfe;
    border: 1px solid #e5edf3;
    border-radius: 8px;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 11px 12px;
}

.dashboard-result-card.is-compact {
    background: #fff;
    padding: 10px;
}

.dashboard-result-main {
    align-items: center;
    display: grid;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) minmax(120px, 150px);
    min-width: 0;
}

.dashboard-result-title {
    min-width: 0;
}

.dashboard-result-title strong,
.dashboard-progress-card-header strong {
    color: #1e3440;
    display: block;
    font-weight: 850;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.dashboard-result-meta {
    align-items: center;
    color: #687887;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 800;
    gap: 7px;
    margin-top: 6px;
}

.dashboard-result-meta > span:not(.dashboard-skill-chip) {
    align-items: center;
    display: inline-flex;
    gap: 5px;
}

.dashboard-result-score {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.dashboard-result-actions {
    justify-content: flex-end;
}

.dashboard-progress-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px 12px 12px;
}

.dashboard-progress-card {
    background: #fbfdfe;
    border: 1px solid #e5edf3;
    border-radius: 8px;
    display: grid;
    gap: 10px;
    padding: 11px 12px;
}

.dashboard-progress-card.is-compact {
    background: #fff;
    padding: 10px;
}

.dashboard-progress-card-header {
    align-items: flex-start;
    display: flex;
    gap: 12px;
    justify-content: space-between;
}

.dashboard-progress-card-header .dashboard-skill-chip {
    margin-top: 6px;
}

.dashboard-progress-compare {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.dashboard-progress-compare > div {
    background: #fff;
    border: 1px solid #edf1f5;
    border-radius: 8px;
    display: grid;
    gap: 7px;
    min-width: 0;
    padding: 8px;
}

.dashboard-progress-compare span:first-child {
    color: #687887;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.dashboard-progress-compare strong {
    color: #214252;
    font-size: 17px;
    font-weight: 900;
    line-height: 1;
}

.dashboard-progress-compact-line {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto;
}

.dashboard-progress-compact-line > div {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.dashboard-progress-compact-line span:first-child {
    color: #687887;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.dashboard-progress-compact-line strong {
    color: #214252;
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
}

.dashboard-more {
    border-top: 1px solid #edf1f5;
    margin-top: 2px;
    padding-top: 8px;
}

.dashboard-more summary {
    align-items: center;
    background: #fff;
    border: 1px solid #e1e8ef;
    border-radius: 8px;
    color: #214252;
    cursor: pointer;
    display: flex;
    font-size: 13px;
    font-weight: 850;
    justify-content: space-between;
    list-style: none;
    min-height: 38px;
    padding: 0 12px;
}

.dashboard-more summary::-webkit-details-marker {
    display: none;
}

.dashboard-more summary i {
    transition: transform 0.18s ease;
}

.dashboard-more[open] summary i {
    transform: rotate(180deg);
}

.dashboard-more-list {
    display: grid;
    gap: 8px;
    margin-top: 8px;
}

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

.dashboard-table {
    border-collapse: collapse;
    margin: 0;
    min-width: 760px;
    width: 100%;
}

.dashboard-table th,
.dashboard-table td {
    border-bottom: 1px solid #edf1f5;
    padding: 13px 12px;
    text-align: left;
    vertical-align: middle;
}

.dashboard-table th {
    color: #657586;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.dashboard-table td {
    color: #263642;
    font-size: 14px;
}

.dashboard-table tbody tr:last-child td {
    border-bottom: 0;
}

.dashboard-table tbody tr:hover {
    background: #fbfdfe;
}

.dashboard-title-cell {
    max-width: 320px;
}

.dashboard-title-cell strong {
    color: #1e3440;
    display: block;
    font-weight: 850;
    line-height: 1.35;
}

.dashboard-title-cell span {
    color: #70808d;
    display: inline-flex;
    font-size: 12px;
    margin-top: 5px;
}

.dashboard-score-stack {
    display: grid;
    gap: 7px;
    min-width: 140px;
}

.dashboard-score-line {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dashboard-score {
    color: #214252;
    font-weight: 900;
}

.dashboard-percent,
.dashboard-chip {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 5px;
    line-height: 1;
    padding: 7px 9px;
    white-space: nowrap;
}

.dashboard-percent {
    background: #eaf4f1;
    border: 1px solid #d4e7df;
    color: #214252;
}

.dashboard-chip {
    background: #f7fafc;
    border: 1px solid #e2e8ef;
    color: #536371;
}

.dashboard-percent.is-high,
.dashboard-chip.is-high {
    background: #eaf7f0;
    border-color: #bfe5d0;
    color: #236b48;
}

.dashboard-percent.is-mid,
.dashboard-chip.is-mid {
    background: #fff7e8;
    border-color: #f3d39b;
    color: #8a5400;
}

.dashboard-percent.is-low,
.dashboard-chip.is-low {
    background: #fff0f2;
    border-color: #f3bdc6;
    color: #a51f32;
}

.dashboard-percent.is-muted,
.dashboard-chip.is-muted {
    background: #f1f5f8;
    border-color: #dfe7ee;
    color: #71808d;
}

.dashboard-score-meter {
    background: #edf2f6;
    border-radius: 999px;
    display: block;
    height: 8px;
    overflow: hidden;
    width: 100%;
}

.dashboard-score-meter span {
    background: #6f8796;
    border-radius: inherit;
    display: block;
    height: 100%;
    width: var(--score-width, 0%);
}

.dashboard-score-meter.is-high span {
    background: #2f7d5b;
}

.dashboard-score-meter.is-mid span {
    background: #d48a1f;
}

.dashboard-score-meter.is-low span {
    background: #c8293d;
}

.dashboard-score-meter.is-muted span {
    background: #9aa8b3;
}

.dashboard-skill-chip,
.dashboard-skill-inline {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    gap: 6px;
    letter-spacing: 0;
    line-height: 1;
    padding: 8px 10px;
    white-space: nowrap;
}

.dashboard-skill-chip::before,
.dashboard-skill-inline::before {
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 8px;
    width: 8px;
}

.dashboard-skill-chip.is-reading,
.dashboard-skill-inline.is-reading {
    background: #e9f5ff;
    border: 1px solid #b9ddff;
    color: #0b5b9e;
}

.dashboard-skill-chip.is-reading::before,
.dashboard-skill-inline.is-reading::before {
    background: #0b74d1;
}

.dashboard-skill-chip.is-listening,
.dashboard-skill-inline.is-listening {
    background: #fff2e8;
    border: 1px solid #ffc999;
    color: #9a4b00;
}

.dashboard-skill-chip.is-listening::before,
.dashboard-skill-inline.is-listening::before {
    background: #f07a00;
}

.dashboard-skill-chip.is-general,
.dashboard-skill-inline.is-general {
    background: #f7fafc;
    border: 1px solid #e2e8ef;
    color: #536371;
}

.dashboard-skill-chip.is-general::before,
.dashboard-skill-inline.is-general::before {
    background: #8a99a6;
}

.dashboard-skill-inline {
    padding: 6px 8px;
}

.dashboard-attempt-count {
    align-items: center;
    background: #eef6f7;
    border: 1px solid #d9e9ec;
    border-radius: 999px;
    color: #214252;
    display: inline-flex;
    font-size: 13px;
    font-weight: 900;
    justify-content: center;
    min-width: 34px;
    padding: 7px 10px;
}

.dashboard-recommendation {
    display: grid;
    gap: 12px;
}

.dashboard-recommendation-item {
    background: #f8fbfd;
    border: 1px solid #e5edf3;
    border-radius: 8px;
    padding: 14px;
}

.dashboard-recommendation-item.is-priority {
    background: #fff8f9;
    border-color: #f1ccd2;
}

.dashboard-roadmap-card {
    background: #f7fbfa;
    border-color: #d8e9e4;
}

.dashboard-recommendation-kicker {
    color: #7a8a97;
    display: block;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.dashboard-recommendation-item strong {
    color: #214252;
    display: block;
    font-weight: 850;
    line-height: 1.35;
}

.dashboard-recommendation-item p {
    color: #64727e;
    font-size: 13px;
    line-height: 1.5;
    margin: 6px 0 12px;
}

.dashboard-recommendation-item .dashboard-score-meter {
    margin: 10px 0 12px;
}

.dashboard-review-meta {
    align-items: center;
    color: #64727e;
    display: flex;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 800;
    gap: 7px;
    margin-top: 9px;
}

.dashboard-empty {
    padding: 32px 28px;
    text-align: center;
}

.dashboard-empty-icon {
    align-items: center;
    background: #eef6f7;
    border: 1px solid #d9e9ec;
    border-radius: 8px;
    color: #214252;
    display: inline-flex;
    font-size: 28px;
    height: 58px;
    justify-content: center;
    margin-bottom: 16px;
    width: 58px;
}

.dashboard-empty h2 {
    color: #214252;
    font-size: 24px;
    font-weight: 850;
    letter-spacing: 0;
    margin: 0 0 10px;
}

.dashboard-empty p {
    color: #657685;
    line-height: 1.65;
    margin: 0 auto 18px;
    max-width: 670px;
}

.dashboard-empty-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.dashboard-unavailable {
    color: #8a99a6;
    font-size: 12px;
    font-weight: 800;
}

@media (max-width: 1199.98px) {
    .dashboard-stat-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .dashboard-roadmap-banner {
        grid-template-columns: 1fr;
    }

    .dashboard-roadmap-steps {
        justify-content: flex-start;
    }

    .dashboard-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .dashboard-hero {
        padding: 24px 0 22px;
    }

    .dashboard-hero-grid,
    .dashboard-stat-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-hero h1 {
        font-size: 26px;
    }

    .dashboard-panel-header {
        align-items: stretch;
        flex-direction: column;
    }

    .dashboard-button {
        width: 100%;
    }

    .dashboard-actions {
        width: 100%;
    }

    .dashboard-roadmap-banner {
        padding: 18px;
    }

    .dashboard-roadmap-steps {
        display: grid;
        grid-template-columns: 1fr;
    }

    .dashboard-compact-list,
    .dashboard-progress-grid {
        padding: 12px;
    }

    .dashboard-result-card,
    .dashboard-result-main {
        grid-template-columns: 1fr;
    }

    .dashboard-result-actions {
        justify-content: stretch;
    }

    .dashboard-progress-grid,
    .dashboard-progress-compare {
        grid-template-columns: 1fr;
    }

    .dashboard-progress-card-header {
        flex-direction: column;
    }

    .dashboard-table-wrap {
        overflow-x: visible;
        padding: 14px;
    }

    .dashboard-table,
    .dashboard-table thead,
    .dashboard-table tbody,
    .dashboard-table tr,
    .dashboard-table td {
        display: block;
        min-width: 0;
        width: 100%;
    }

    .dashboard-table thead {
        display: none;
    }

    .dashboard-table tr {
        background: #fff;
        border: 1px solid #e3e9ef;
        border-radius: 8px;
        margin-bottom: 12px;
        overflow: hidden;
    }

    .dashboard-table tbody tr:hover {
        background: #fff;
    }

    .dashboard-table td {
        align-items: start;
        border-bottom: 1px solid #edf1f5;
        display: grid;
        gap: 10px;
        grid-template-columns: 96px minmax(0, 1fr);
        padding: 12px;
    }

    .dashboard-table td::before {
        color: #7a8a97;
        content: attr(data-label);
        font-size: 11px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .dashboard-table td:last-child {
        border-bottom: 0;
    }

    .dashboard-title-cell {
        max-width: none;
    }

    .dashboard-score-stack,
    .dashboard-score-meter {
        min-width: 0;
    }
}
