.tool-content {
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    padding: 1.2em;
    border-radius: .6em;
    position: relative;
}

.table-area table th {
    border-width: 0;
    font-weight: 600;
    padding: 10px 15px;
    font-size: 15px;
}

.table-area table td {
    border-width: 0;
    font-weight: 400;
    padding: 10px 15px;
    white-space: nowrap;
    font-size: 14px;
}

.table-area table th:nth-child(1), .table-area table td:nth-child(1) {
    text-align: center;
    width: 80px;
}

.table-area table th:nth-child(2),.table-area table td:nth-child(2),.table-area table th:nth-child(3),.table-area table td:nth-child(3),.table-area table th:nth-child(4),.table-area table td:nth-child(4) {
    text-align: center;
    white-space: nowrap;
    width: 120px;
}

.table-area table th:nth-child(6), .table-area table td:nth-child(6) {
    text-align: center;
    width: 100px;
}

.table-area table td:nth-child(6) span {
    background: transparent;
    color: #6865ff;
    border: 1px solid #6865ff;
    padding: 4px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 13.5px;
    transition: all 0.2s;
    white-space: nowrap;
}

.table-area table td:nth-child(6) span:hover {
    background-color: #6865ff;
    color: #fff;
}

@media (max-width: 768px) {
    .tool-content {
        padding: .8em !important;
    }

    .table-container table th, .table-container table td {
        padding: 6px 8px !important;
    }
}