.section {
  max-width: auto;
  margin: 5rem;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 2rem 3rem;
}

.contindiv {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.left-alg {
  flex: 1;
  min-width: 280px;
}

.left-alg h2 {
  font-size: 24px;
  color: #007bff;
  margin-bottom: 1rem;
}

.left-alg p {
  font-size: 14px;
  color: #555;
  margin-bottom: 0.5rem;
}

.big-form {
  flex: 2;
  min-width: 300px;
}

.big-form h2 {
  font-size: 22px;
  margin-bottom: 1rem;
  color: #333;
}

.input-group {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 8px;
}

.input-group input[type="url"] {
  flex-grow: 1;
  padding: 0.6rem 0.8rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s;
}

.input-group input[type="url"]:focus {
  border-color: #007bff;
  outline: none;
}

.btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.mb-3 {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-primary {
  background-color: #007bff;
  color: white;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-danger {
  background-color: #dc3545;
  color: white;
}

.btn-danger:hover {
  background-color: #a71d2a;
}

.btn-success {
  background-color: #28a745;
  margin-top: 20px;
  color: white;
}

.btn-success:hover {
  background-color: #1e7e34;
}

.tab-buttons {
  display: flex;
  border-bottom: 2px solid #ccc;
}

.tab-buttons button {
  flex: 1;
  padding: 10px;
  cursor: pointer;
  background-color: #f1f1f1;
  border: none;
  outline: none;
  transition: background-color 0.3s ease;
}

.tab-buttons button.active {
  background-color: #ffffff;
  border-bottom: 2px solid #007BFF;
  font-weight: bold;
}

.tab-content {
  display: none;
  padding: 20px;
  border: 1px solid #ccc;
  border-top: none;
}

.tab-content.active {
  display: block;
}

.form-control {
  width: 100%;
  padding: 0.6rem 0.8rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #333;
  background-color: #fff;
  border: 1.5px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
}

.form-control:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 6px rgba(0, 123, 255, 0.4);
}

.logs-div {
  margin-top: 20px;
  height: 200px;
  overflow-y: auto;
  border: 2px solid #c7c6c6;
  border-radius: 20px;
  padding: 10px;
}

.my-form input,
.my-form select,
.my-form textarea {
  border: 1px solid #ccc;
  padding: 10px;
  width: 100%;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .contindiv {
    flex-direction: column;
    gap: 2rem;
  }
}
