body {
  font-family: Arial, sans-serif;
  margin: 40px;
  background: #f5f5f5;
}

.container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  color: #333;
  text-align: center;
  margin-bottom: 30px;
}

.warning {
  background: #fff3cd;
  border: 1px solid #ffeaa7;
  padding: 15px;
  border-radius: 4px;
  margin-bottom: 30px;
  text-align: center;
}

.button-area {
  text-align: center;
  margin: 40px 0;
}

.control-buttons {
  margin-bottom: 20px;
}

.toggle-button {
  background: linear-gradient(45deg, #28a745, #20c997);
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(40, 167, 69, 0.3);
  transition: all 0.3s ease;
}

.toggle-button:hover {
  background: linear-gradient(45deg, #20c997, #28a745);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.5);
}

.destroy-button {
  background: linear-gradient(45deg, #dc3545, #a71e2a);
  color: white;
  border: none;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.destroy-button:hover {
  background: linear-gradient(45deg, #a71e2a, #dc3545);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

.code-section {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  padding: 20px;
  margin-top: 40px;
}

.code-section h3 {
  margin-top: 0;
  color: #495057;
}

.code {
  background: #2d3748;
  color: #e2e8f0;
  padding: 15px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 14px;
  overflow-x: auto;
  white-space: pre;
}

.usage {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
  padding: 15px;
  margin-top: 20px;
  margin-bottom: 20px;
} 