/* Start custom CSS for html, class: .elementor-element-edfe255 *//* =========================================================
   MAINTENANCE DASHBOARD DEMO
   Für Creative Elements
   ========================================================= */

.maintenance-dashboard {
  font-family: Arial, sans-serif;
  background: #f4f7fb;
  color: #1f2937;
  border: 1px solid #d9e1ea;
  border-radius: 18px;
  overflow: hidden;
}

/* Header */
.md-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0e65af;
  color: #ffffff;
  padding: 22px 28px;
}

.md-logo {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.md-subtitle {
  font-size: 14px;
  opacity: 0.9;
  margin-top: 4px;
}

.md-status-badge {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* Layout */
.md-layout {
  display: flex;
  min-height: 700px;
}

/* Sidebar */
.md-sidebar {
  width: 240px;
  background: #1b2430;
  color: #ffffff;
  padding: 24px 18px;
}

.md-sidebar-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.7;
  margin-bottom: 18px;
}

.md-menu-item {
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 8px;
  background: transparent;
  font-size: 15px;
  transition: all 0.2s ease;
}

.md-menu-item.active {
  background: #0e65af;
  font-weight: 700;
}

.md-menu-item:not(.active) {
  background: rgba(255, 255, 255, 0.04);
}

/* Content */
.md-content {
  flex: 1;
  padding: 28px;
}

/* Cards */
.md-card {
  background: #ffffff;
  border: 1px solid #dde6ef;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.md-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.md-card-header h2 {
  font-size: 22px;
  margin: 0;
  color: #1f2937;
}

.md-card-note {
  font-size: 13px;
  color: #6b7280;
}

/* =========================================================
   CHECKLIST FORM
   ========================================================= */

.md-checklist-card {
  max-width: 1000px;
}

.md-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.md-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.md-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.md-form-group label {
  font-size: 14px;
  font-weight: 700;
  color: #1f2937;
}

.md-form-group input,
.md-form-group select,
.md-form-group textarea {
  width: 100%;
  border: 1px solid #d6e0ea;
  border-radius: 12px;
  padding: 13px 14px;
  font-size: 14px;
  background: #ffffff;
  color: #1f2937;
  box-sizing: border-box;
}

.md-form-group input:focus,
.md-form-group select:focus,
.md-form-group textarea:focus {
  outline: none;
  border-color: #0e65af;
  box-shadow: 0 0 0 3px rgba(14, 101, 175, 0.10);
}

.md-full-row {
  width: 100%;
}

.md-checklist-section {
  background: #f8fbfe;
  border: 1px solid #e3ebf4;
  border-radius: 16px;
  padding: 20px;
}

.md-checklist-section h3 {
  margin: 0 0 16px 0;
  font-size: 18px;
  color: #1f2937;
}

.md-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e8eef5;
  font-size: 15px;
  color: #1f2937;
}

.md-check-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.md-check-item input[type="checkbox"] {
  margin-top: 2px;
  transform: scale(1.15);
  accent-color: #0e65af;
}

.md-form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.md-btn {
  border: none;
  border-radius: 12px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.md-btn-primary {
  background: #0e65af;
  color: #ffffff;
}

.md-btn-primary:hover {
  background: #0b5593;
}

.md-btn-secondary {
  background: #e9eff5;
  color: #1f2937;
}

.md-btn-secondary:hover {
  background: #dbe5ee;
}

/* Responsive */
@media (max-width: 1100px) {
  .md-checklist-card {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .md-layout {
    flex-direction: column;
  }

  .md-sidebar {
    width: 100%;
  }

  .md-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .md-form-grid {
    grid-template-columns: 1fr;
  }

  .md-content {
    padding: 18px;
  }

  .md-card {
    padding: 18px;
  }
}/* End custom CSS */