.tool-content {
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
    padding: 1.2em;
    border-radius: .6em;
    position: relative;
}

.table-container table th {
    border-width: 0;
    font-family: var(--font-simple);
    font-weight: 600;
    padding: 10px 15px;
    font-size: 15px;
}

.table-container table td {
    border-width: 0;
    font-family: var(--font-simple);
    font-weight: 400;
    padding: 10px 15px;
    white-space: nowrap;
    font-size: 14px;
}

.table-container table td:nth-child(1) {
    color: #506ae5;
}

.table-container table th:nth-child(2){
    text-align: center;
    white-space: nowrap;
}

.table-container table td:nth-child(2) {
    text-align: center;
}

.table-container table td:nth-child(3) {
    color: #54515e;
}

.table-container table th:nth-child(4),.table-container table td:nth-child(4){
    text-align: center;
}

.table-container table td:nth-child(4) 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-container table td:nth-child(4) 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;
    }

    .timezone-badge {
        font-weight: normal;
        font-family: var(--font-simple);
        font-size: 13.5px;
        padding: 0 6px;
    }
}