/* =========================
   STAGE TITLE
========================= */
.udi-stage-title {
    font-size: 18px;
    margin: 20px 0 10px;
    font-weight: 600;
    color: #e5e7eb;
}

/* =========================
   TABLE WRAPPER
========================= */
.udi-table-wrap {
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    overflow: hidden;
    background: #0f172a;
    margin-bottom: 20px;
}

/* =========================
   TABLE BASE
========================= */
.udi-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 14px;
	border: 0;
}

/* =========================
   TABLE HEADER
========================= */
.udi-table thead th {
    background: #111827;
    font-weight: 600;
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
	border-right: 0;
    color: #9ca3af;
}

/* =========================
   TABLE BODY
========================= */
.udi-table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
	border-right: 0;
    vertical-align: middle;
    color: #e5e7eb;
}

.udi-table tbody tr:last-child td {
    border-bottom: none;
}

.udi-table tbody tr:hover {
    background: rgba(255,255,255,0.1);
}

/* =========================
   COLUMN EMPHASIS
========================= */
.udi-col-name {
    font-weight: 600;
    color: #ffffff;
}

.udi-col-phone,
.udi-col-email {
    color: #cbd5f5;
}

.udi-col-details,
.udi-col-intake {
    text-align: center;
}

/* =========================
   LINKS
========================= */
.udi-col-details a {
    color: #7aa2ff;
    text-decoration: none;
}

.udi-col-details a:hover {
    text-decoration: underline;
}

.udi-col-intake a {
    color: #34d399;
    font-weight: 600;
    text-decoration: none;
}

.udi-col-intake a:hover {
    text-decoration: underline;
}

/* =========================
   STAGE GROUP
========================= */
.udi-stage-group {
    margin-bottom: 24px;
}

/* =========================
   CONTEXT CARD (KEY PART)
========================= */
.udi-context-card {
    border-radius: 14px;
    padding: 20px 22px;
    background: #1e2238; /* key improvement */
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 20px;
}

/* =========================
   NAME
========================= */
.udi-context-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 14px;
}

.udi-name-link {
    color: #8fa7ff; /* softer blue */
    text-decoration: underline;
}

.udi-name-link:hover {
    color: #b4c2ff;
}

/* =========================
   META GRID
========================= */
.udi-context-meta {
    display: grid;
    grid-template-columns: 
        minmax(120px, 1fr)
        minmax(140px, 1fr)
        minmax(220px, 2fr)
        minmax(80px, 0.6fr)
        minmax(180px, 1fr);

    gap: 16px;
    align-items: center;
}

/* =========================
   META ITEMS
========================= */
.udi-context-meta-item {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.4;
}

/* Stage */
.udi-context-meta-item:first-child {
    font-weight: 500;
    color: #ffffff;
}

/* Email */
.udi-context-meta-email {
    overflow-wrap: anywhere;
    word-break: break-word;
}

/* Date */
.udi-context-meta-item:last-child {
    text-align: right;
    color: #94a3b8;
}

/* =========================
   HOVER
========================= */
.udi-context-card:hover {
    background: #252a45;
    border-color: rgba(255,255,255,0.08);
    transition: all 0.2s ease;
}