/**
 * main.css
 *
 * This file defines styles for the main sections of the monitoring tool interface,
 * including the header with the title and description, and the individual form
 * sections with their titles, icons, and descriptions.
 */

/* Header Styles */
.main-header {
  background: linear-gradient(135deg, #2c3e50, #3498db);
  padding: 2rem 0;
  margin-bottom: 2rem;
  color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.header-content h1 {
  font-size: 2.5rem;
  margin: 0;
  font-weight: 600;
  color: white;
}

.system-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

/* Section Styles */
.section-header {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  border-left: 5px solid #3498db;
}

.section-title {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 0;
  gap: 1rem;
}

.section-title i {
  font-size: 2rem;
  color: #3498db;
}

.section-description {
  color: #666;
  font-size: 1.1rem;
  margin: 0.8rem 0 0 0;
  line-height: 1.4;
}

/* All other CSS from the inline style tag */
/* ... existing inline styles ... */
