.client-table-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
    border:1px solid #eef2f7;
}

.client-table-header{
    background:#29546a;
    color:#fff;
    padding:18px 22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    font-weight:600;
    font-size:18px;
}

.client-table-header i{
    margin-right:10px;
}

.table-action-btn{
    background:rgba(255,255,255,.12);
    color:#fff;
    text-decoration:none;
    padding:10px 16px;
    border-radius:10px;
    font-size:14px;
    transition:.3s;
}

.table-action-btn:hover{
    background:rgba(255,255,255,.2);
    color:#fff;
}

.modern-client-table{
    margin-bottom:0;
}

.modern-client-table thead{
    background:#f8fafc;
}

.modern-client-table th{
    border:none;
    padding:18px;
    color:#64748b;
    font-weight:600;
    font-size:14px;
}

.modern-client-table td{
    padding:18px;
    vertical-align:middle;
    border-top:1px solid #f1f5f9;
}

.ticket-view-btn{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
    background:#f1f5f9;
    color:#29546a;
    text-decoration:none;
    transition:.3s;
}

.ticket-view-btn:hover{
    background:#29546a;
    color:#fff;
}
.service-status{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:8px 14px;
    border-radius:10px;
    font-size:13px;
    font-weight:600;
    min-width:120px;
}

.status-active{
    background:#ecfdf3;
    color:#16a34a;
    border:1px solid #bbf7d0;
}

.status-pending{
    background:#fff7ed;
    color:#ea580c;
    border:1px solid #fed7aa;
}

.status-suspended{
    background:#fef3c7;
    color:#ca8a04;
    border:1px solid #fde68a;
}

.status-terminated{
    background:#fef2f2;
    color:#dc2626;
    border:1px solid #fecaca;
}

.status-passive{
    background:#f1f5f9;
    color:#64748b;
    border:1px solid #cbd5e1;
}
.mini-manage-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    padding:8px 14px;
    border-radius:10px;
    background:#29546a;
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
    transition:.3s;
}

.mini-manage-btn:hover{
    background:#1f4254;
    color:#fff;
    transform:translateY(-1px);
}

@media(max-width:768px){

    .client-table-header{
        flex-direction:column;
        gap:12px;
        align-items:flex-start;
    }

    .modern-client-table{
        min-width:650px;
    }
	
    .dashboard-mobile-text h4{
        color:#111827 !important;
    }

    .dashboard-mobile-text .text-white-50{
        color:#475569 !important;
    }
}