
#extension table {
    width: 100%;
    border-collapse: collapse;
}
#extension table th,
#extension table td {
    padding: 8px;
    text-align: left;
    border: 1px solid #eee;
    border-bottom: 1px solid #ddd;
}

#extension table th {
    background-color: #f2f2f2;
}

#extension table tr:hover {
    background-color: #f5f5f5;
}

#extension table tr:nth-child(even) {
    background-color: #f9f9f9;
}

#extension table tr:nth-child(odd) {
    background-color: #ffffff;
}

#extension table .actions {
    display: flex;
    gap: 10px;
}

#extension table .actions a {
    text-decoration: none;
    color: #007bff;
}

#extension table .actions a:hover {
    color: #0056b3;
}

#extension table .actions a.delete {
    color: #dc3545;
}

#extension table .actions a.delete:hover {
    color: #c82333;
}

