.tlm-licenses-table {
    width: 100%;
    border-collapse: collapse;
}

.tlm-licenses-table th,
.tlm-licenses-table td {
    padding: 10px 12px;
    text-align: left;
    vertical-align: middle;
}

.tlm-license-key {
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9em;
    background: #f5f5f5;
    padding: 3px 6px;
    border-radius: 3px;
    letter-spacing: 0.5px;
    user-select: all;
}

.tlm-copy-btn {
    background: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    cursor: pointer;
    padding: 2px 5px;
    margin-left: 6px;
    vertical-align: middle;
    line-height: 1;
    transition: border-color 0.2s;
}

.tlm-copy-btn:hover {
    border-color: #666;
}

.tlm-copy-btn .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

.tlm-status {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.85em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.tlm-status--active {
    background: #d4edda;
    color: #155724;
}

.tlm-status--expired {
    background: #fff3cd;
    color: #856404;
}

.tlm-status--revoked {
    background: #f8d7da;
    color: #721c24;
}

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

    .tlm-licenses-table tr {
        display: block;
        margin-bottom: 16px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .tlm-licenses-table td {
        display: block;
        text-align: right;
        padding: 8px 12px;
        border-bottom: 1px solid #eee;
    }

    .tlm-licenses-table td::before {
        content: attr(data-title);
        float: left;
        font-weight: 600;
    }

    .tlm-licenses-table td:last-child {
        border-bottom: 0;
    }
}
