.tools-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: .95rem;
    border: 2px solid #3b82f6;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1);
}
.tools-table th {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    color: white;
    font-weight: 700;
    padding: 1rem 0.75rem;
    text-align: center;
    border-bottom: 2px solid #3b82f6;
    border-right: 2px solid #3b82f6;
}
.tools-table th:last-child {
    border-right: none;
}
.tools-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid #dbeafe;
    border-right: 1px solid #dbeafe;
    vertical-align: top;
}
.tools-table td:last-child {
    border-right: none;
}
.tools-table tr:last-child td {
    border-bottom: none;
}
.tools-table tr:hover {
    background: #eff6ff;
    transform: translateY(-1px);
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.1);
}
.tools-table tr {
    transition: all 0.2s ease;
}
.stars {
    color: #f59e0b;
    font-weight: 700;
    text-align: center;
}
.tools-table ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 1rem;
}
.tools-table li {
    margin-bottom: 0;
    line-height: 1.4;
}
.tools-table .article-ul li:before {
    top: 0.3em;
}
.tools-table th i {
    margin-right: 8px;
    font-size: 1.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}