
.professional-dashboard-container {
    background-color: #f8fafc; /* slate-50 */
    padding: 2rem;
    border-radius: 0.75rem;
}

.professional-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
    color: #334155; /* slate-700 */
}

.professional-table th,
.professional-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0; /* slate-200 */
}

.professional-table th {
    background-color: #f1f5f9; /* slate-100 */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569; /* slate-600 */
}

.professional-table tbody tr:hover {
    background-color: #f8fafc; /* slate-50 */
}

.professional-table .status-indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    display: inline-block;
    margin-right: 0.5rem;
}

.professional-table .status-expired .status-indicator { background-color: #ef4444; } /* red-500 */
.professional-table .status-expiring-critical .status-indicator { background-color: #f97316; } /* orange-500 */
.professional-table .status-expiring-soon .status-indicator { background-color: #f59e0b; } /* amber-500 */
.professional-table .status-expiring-later .status-indicator { background-color: #3b82f6; } /* blue-500 */
.professional-table .status-current .status-indicator { background-color: #10b981; } /* emerald-500 */
.professional-table .status-no-date .status-indicator { background-color: #64748b; } /* slate-500 */

.professional-table .actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.professional-table .action-btn {
    color: #64748b; /* slate-500 */
    transition: color 0.2s ease;
}

.professional-table .action-btn:hover {
    color: #1e293b; /* slate-800 */
}

@media screen and (max-width: 768px) {
    .professional-table thead {
        display: none;
    }

    .professional-table tr {
        display: block;
        margin-bottom: 1rem;
        border: 1px solid #e2e8f0; /* slate-200 */
        border-radius: 0.5rem;
        padding: 1rem;
    }

    .professional-table td {
        display: block;
        text-align: right;
        padding-left: 50%;
        position: relative;
        border-bottom: none;
    }

    .professional-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 0;
        width: 45%;
        padding-left: 1rem;
        font-weight: 600;
        text-align: left;
    }
}
