#ts-tool {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  max-width: 1000px;
  margin: 20px auto;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  font-family: "Poppins", sans-serif;
}

#ts-tool h2 {
  text-align: center;
  margin-bottom: 15px;
}

.ts-input-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

#ts-url {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

#ts-start {
  padding: 10px 20px;
  background: #0073aa;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

#ts-start:hover {
  background: #005f8d;
}

#ts-results table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

#ts-results th, #ts-results td {
  border: 1px solid #ddd;
  padding: 8px;
  text-align: left; /* ✅ Left-aligned titles and URLs */
}

#ts-results th {
  background: #0073aa;
  color: #fff;
}

.ts-buttons {
  text-align: center;
  margin-top: 20px;
}

.ts-buttons button {
  padding: 10px 20px;
  border: none;
  background: #0073aa;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  margin: 5px;
}

.ts-buttons button:hover {
  background: #005f8d;
}

@media (max-width: 600px) {
  .ts-input-container {
    flex-direction: column;
  }
  #ts-url, #ts-start {
    width: 100%;
  }
}
