.ep-table-wrapper-d0c425d4 {
    background-color: #05101a;
    color: #e2e8f0;
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
    border-radius: 8px;
    border: 1px solid #1a2736;
    overflow: hidden;
}

.ep-table-header-d0c425d4, 
.ep-table-row-d0c425d4 {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.2fr 1fr auto;
    align-items: center;
    padding: 16px 24px;
    border-bottom: 1px solid #1a2736;
}

.ep-table-header-d0c425d4 {
    background-color: transparent;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #f8fafc;
    font-weight: 500;
}

.ep-table-row-d0c425d4:last-child {
    border-bottom: none;
}

/* Col styling */
.ep-col-name { display: flex; align-items: flex-start; gap: 16px; }
.ep-model-details { display: flex; flex-direction: column; }
.ep-model-title { font-weight: 500; color: #f8fafc; font-size: 15px; line-height: 1.2; }
.ep-model-sub { font-size: 13px; color: #64748b; margin-top: 6px; }
.ep-col-hw, .ep-col-req, .ep-col-lat { font-size: 14px; color: #94a3b8; }
.ep-col-action { text-align: right; }

/* Status Ring Icon */
.ep-icon-circle {
    width: 16px; height: 16px; border-radius: 50%;
    border: 1px solid; display: flex; align-items: center; justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
}
.ep-icon-inner { width: 6px; height: 6px; border-radius: 50%; }

/* Status Colors - Active */
.ep-status-active .ep-icon-circle { border-color: #059669; }
.ep-status-active .ep-icon-inner { background-color: #10b981; }
.ep-badge-active { color: #10b981; background: rgba(16, 185, 129, 0.1); border-color: rgba(16, 185, 129, 0.2); }
.ep-badge-active .ep-badge-dot { background: #10b981; }

/* Status Colors - Cold (Stop) */
.ep-status-cold .ep-icon-circle { border-color: #dc2626; }
.ep-status-cold .ep-icon-inner { background-color: #ef4444; }
.ep-badge-cold { color: #f87171; background: rgba(239, 68, 68, 0.1); border-color: rgba(239, 68, 68, 0.2); }
.ep-badge-cold .ep-badge-dot { background: #f87171; }

/* Status Colors - Paused */
.ep-status-paused .ep-icon-circle { border-color: #ca8a04; }
.ep-status-paused .ep-icon-inner { background-color: #eab308; }
.ep-badge-paused { color: #facc15; background: rgba(234, 179, 8, 0.1); border-color: rgba(234, 179, 8, 0.2); }
.ep-badge-paused .ep-badge-dot { background: #facc15; }

/* Badges */
.ep-badge {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 4px 12px; border-radius: 99px; font-size: 13px; font-weight: 500;
    border: 1px solid;
    white-space: nowrap;
}
.ep-badge-dot { width: 6px; height: 6px; border-radius: 50%; }

/* Button */
.ep-btn-manage {
    background: transparent;
    color: #e2e8f0;
    border: 1px solid #334155;
    padding: 6px 16px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
    display: inline-block;
}
.ep-btn-manage:hover { background: rgba(255,255,255,0.05); color: #fff; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .ep-table-header-d0c425d4, .ep-table-row-d0c425d4 {
        grid-template-columns: 2fr 1fr 1fr auto;
    }
    .ep-col-req, .ep-col-lat { display: none; }
}

@media (max-width: 768px) {
    .ep-table-header-d0c425d4 { display: none; }
    .ep-table-row-d0c425d4 {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }
    .ep-col { 
        display: grid; 
        grid-template-columns: 120px 1fr; 
        align-items: center; 
        gap: 12px;
    }
    .ep-col::before { 
        content: attr(data-label); 
        color: #94a3b8; 
        font-size: 12px; 
        font-weight: 600; 
        text-transform: uppercase; 
    }
    .ep-col-name { 
        display: flex; 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 8px; 
        padding-bottom: 12px;
        border-bottom: 1px solid #1a2736;
        margin-bottom: 4px;
    }
    .ep-col-name::before { display: none; }
    .ep-col-name .ep-icon-circle { display: none; }
    .ep-col-req, .ep-col-lat { display: grid; }
    .ep-col-action { 
        display: flex;
        justify-content: flex-start;
        margin-top: 12px; 
        padding-top: 16px;
        border-top: 1px solid #1a2736;
    }
    .ep-col-action::before { display: none; }
}