        /* STYLE FOR THE DASHBOARD */
        /* =========================
   Dashboard Metrics
   ========================= */
        .dashboard-metrics {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
        }

        .metric-card {
            background: linear-gradient(to bottom, var(--tech-blue-mid), var(--tech-blue-dark));
            border: 1px solid rgba(58, 108, 147, 0.35);
            border-radius: 16px;
            padding: 18px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        }

        .metric-label {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #9ca3af;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .metric-value {
            margin-top: 10px;
            font-size: 34px;
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
        }

        .metric-foot {
            margin-top: 8px;
            font-size: 13px;
            color: #d1d5db;
        }

        .metrics-panel {
            background: linear-gradient(to bottom, var(--tech-blue-mid), var(--tech-blue-dark));
            border: 1px solid rgba(58, 108, 147, 0.35);
            border-radius: 16px;
            padding: 18px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
        }

        .metrics-panel-header {
            display: flex;
            flex-direction: column;
            gap: 4px;
            margin-bottom: 12px;
        }

        .metrics-panel-title {
            font-size: 16px;
            font-weight: 800;
            color: #fff;
        }

        .metrics-panel-subtitle {
            font-size: 13px;
            color: #d1d5db;
        }

        .metrics-table {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .ws-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            padding: 12px;
            border-radius: 12px;
            border: 1px solid rgba(58, 108, 147, 0.25);
            background: rgba(0, 0, 0, 0.10);
        }

        .ws-row-left {
            min-width: 0;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .ws-name {
            font-weight: 800;
            color: #fff;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ws-meta {
            font-size: 13px;
            color: #d1d5db;
        }

        .ws-row-right {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: flex-end;
        }

        .pill {
            font-size: 12px;
            font-weight: 700;
            padding: 6px 10px;
            border-radius: 9999px;
            border: 1px solid rgba(58, 108, 147, 0.35);
            background: rgba(58, 108, 147, 0.20);
            color: #e5e7eb;
        }

        .hidden {
            display: none !important;
        }
