.tool-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  border-radius: 12px;
  margin-bottom: 68px;
}

.tool-header {
  text-align: center;
  margin-bottom: 40px;
}

.tool-icon-large {
  font-size: 48px;
  color: #3498db;
  margin-bottom: 20px;
}

.tool-description {
  color: #666;
  font-size: 18px;
  margin-top: 10px;
}

.tool-body {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.input-group {
  margin-bottom: 20px;
}

.input-group label {
  display: block;
  font-weight: bold;
  color: #333;
}

.input-group input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}

.options-container {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.option-group {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.option-group input[type="checkbox"],
.option-group input[type="radio"] {
  margin-right: 8px;
  width: auto;
}

.option-group label {
  margin: 0;
  font-weight: normal;
}

.record-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.record-type-option {
  display: flex;
  align-items: center;
}

.record-type-option input[type="checkbox"] {
  margin-right: 5px;
}

.action-button {
  background: #3498db;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin: 10px 10px 10px 0;
}

.action-button:hover {
  background: #2980b9;
}

.action-button i {
  margin-right: 8px;
}

.action-button.secondary {
  background: #6c757d;
}

.action-button.secondary:hover {
  background: #545b62;
}

.result-container {
  margin-top: 20px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 4px;
  max-height: 400px;
  overflow-y: auto;
}

.result-header {
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.dns-record {
  margin-bottom: 15px;
  padding: 10px;
  background: white;
  border: 1px solid #eee;
  border-radius: 4px;
}

.dns-record-type {
  font-weight: bold;
  color: #3498db;
  margin-bottom: 5px;
}

.dns-record-data {
  font-family: 'Courier New', Courier, monospace;
  margin-left: 20px;
}

.dns-error {
  color: #dc3545;
  font-weight: bold;
}

.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #28a745;
  color: white;
  padding: 15px 25px;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification.success {
  background-color: #28a745;
}

.notification.error {
  background-color: #dc3545;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .tool-content {
    padding: 20px 15px;
  }

  .options-container {
    flex-direction: column;
  }

  .option-group {
    margin-right: 0;
  }

  .action-button {
    width: 100%;
    margin: 10px 0;
    justify-content: center;
  }

  .record-types {
    flex-direction: column;
  }

  .notification {
    top: 10px;
    right: 10px;
    left: 10px;
    transform: translateY(-100%);
  }

  .notification.show {
    transform: translateY(0);
  }
}
