/* Modal background */
#exec-ai-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

/* Modal container */
#exec-ai-form-content {
  background: #fff;
  max-width: 800px;
  width: 90%;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  max-height: 90vh;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Form fields */
#exec-ai-form label {
  font-weight: bold;
  margin-top: 20px;
  display: block;
  font-size: 14px;
}

#exec-ai-form select,
#exec-ai-form textarea {
  width: 100%;
  padding: 8px;
  margin-top: 8px;
  font-size: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  margin-bottom: 15px;
}

#exec-ai-form input[type="checkbox"] {
  margin-right: 6px;
}

#exec-ai-form button {
  background: #0051a2;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
}

/* Executive Report Styling */
#exec-report {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

#exec-report h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #0051a2;
}

#exec-report ul {
  padding-left: 20px;
}

#exec-report li {
  margin-bottom: 6px;
}

#exec-report a {
  text-decoration: none;
  font-weight: bold;
  color: #0051a2;
}

#exec-report button {
  background: #444;
  color: white;
  border: none;
  padding: 10px 18px;
  margin-right: 10px;
  margin-top: 15px;
  cursor: pointer;
  border-radius: 5px;
}
