.tool-content {
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    padding: 0 1.2em 1.2em;
    border-radius: .6em;
    position: relative;
}

.tool-content .tool-item {
    display: flex;
    flex-direction: column;
    font-family: var(--font-simple);
}

.tool-content .tool-item h3 {
    font-size: 1em;
    font-weight: 600;
    margin-bottom: 0.6em;
    margin-top: 1.2em;
}

.tool-content table tr td {
    padding: 8px 12px;
}

.tool-content table tr td:nth-child(1) {
    width: 200px;
}

.tool-content table th:nth-child(3), .tool-content table td:nth-child(3) {
    width: 85px;
    text-align: center;
}

.copy {
    color: rgb(103, 98, 255);
    border: solid 1px rgb(103, 98, 255);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    height: 26px;
    border-radius: 4px;
    cursor: pointer;
}

.copy:hover {
    background-color: rgb(103, 98, 255);
    color: #fff;
}

@media (max-width: 768px) {
    .tool-content {
        padding: .9em !important;
    }

    .tool-content table tr th, .tool-content table tr td {
        padding: 6px 8px !important;
        white-space: nowrap;
    }

    .copy{
        width: 60px;
    }
}
