body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8fafc;
  margin: 0;
  color: #1e293b;
}

.container {
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.header {
  background: #2563eb;
  color: white;
  padding: 20px;
  text-align: center;
}

.header nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.tool-search {
  width: 100%;
  max-width: 500px;
  padding: 12px 16px;
  font-size: 16px;
  margin: 20px 0;
  border: 2px solid #2563eb;
  border-radius: 6px;
}

.tool-list {
  list-style: none;
  padding: 0;
}

.tool-list li {
  margin-bottom: 10px;
}

.tool-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.tool-link:hover {
  text-decoration: underline;
  color: #1e40af;
}

.footer {
  text-align: center;
  padding: 30px;
  background: #f1f5f9;
  margin-top: 50px;
  color: #64748b;
}

/* for bulk url opener start ---------------------------------------------*/

.tool-container {
  max-width: 600px;
  margin: 40px auto;
  background: #fefefe;
  border: 2px solid #3b82f6;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.tool-title {
  text-align: center;
  color: #1d4ed8;
  font-size: 24px;
  margin-bottom: 20px;
}

textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
  resize: vertical;
  margin-bottom: 20px;
}

button {
  display: block;
  width: 100%;
  padding: 12px;
  font-size: 16px;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #2563eb;
}

/* for bulk url opener end ---------------------------------------------*/