#ai-scheduller-container {
  max-width: 460px;
  margin: 32px auto;
  padding: 28px 22px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(80,85,170,.09), 0 0 0 1px #e1e8ef;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
}
#ai-scheduller-container h2, #ai-scheduller-container h3 {
  color: #233492;
  margin-top: 0;
}
#ai-scheduller-form label {
  display: block;
  margin: 14px 0 8px 0;
  font-weight: 500;
}
#ai-scheduller-form input,
#ai-scheduller-form select,
#ai-scheduller-form textarea {
  width: 100%;
  border: 1px solid #cfd8dc;
  border-radius: 8px;
  padding: 8px;
  margin-bottom: 10px;
  font-size: 1em;
  transition: border 0.2s;
}
#ai-scheduller-form input:focus,
#ai-scheduller-form select:focus,
#ai-scheduller-form textarea:focus {
  border-color: #3f51b5;
  outline: none;
}
#add-btn {
  background: #3f51b5;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: background .18s;
}
#add-btn:hover {
  background: #233492;
}
#schedule-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#schedule-list li {
  background: #f8f9fd;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sched-actions {
  margin-top: 4px;
  display: flex;
  gap: 8px;
}
.sched-actions button {
  background: #e3e6fa;
  color: #3f51b5;
  border: none;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 0.95em;
  cursor: pointer;
  transition: background .18s;
}
.sched-actions button:hover {
  background: #d1d5f3;
}

@media (max-width: 600px) {
  #ai-scheduller-container {
    max-width: 98vw;
    padding: 12px 4vw;
  }
  #ai-scheduller-form label {
    margin: 10px 0 4px 0;
  }
}