/* helpTool.css - Styled to match existing dashboard theme */

.help-fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0b2e59;
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  z-index: 9999;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background-color 0.2s ease;
}

.help-fab:hover {
  background-color: #103d7a;
}

.help-modal {
  position: fixed;
  bottom: 100px;
  right: 20px;
  left: auto !important;
  margin: 0 !important;
  width: 320px;
  background: #ffffff;
  border: 2px solid #0b2e59;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  padding: 0;
  border-radius: 10px;
  z-index: 10000;
  font-family: Arial, sans-serif;
  overflow: hidden;
  max-height: 80vh;
  overflow-y: auto;
}

.help-modal-header {
  background-color: #003380;
  color: white;
  padding: 6px 10px;
  font-weight: bold;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.tiq-help-close-button {
  font-size: 28px;
  color: white;
  background: transparent;
  border: none;
  padding: 2px 6px;
  margin: 0;
  cursor: pointer;
  z-index: 1;
  transition: color 0.2s;
  align-self: flex-start;
}

.tiq-help-close-button:hover {
  color: #ffcccc;
}

.help-header {
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 0;
  text-align: left;
}

.help-content {
  padding: 14px 18px;
}

.help-content details {
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 6px 10px;
  background-color: #f9fcff;
}

.help-content summary {
  font-weight: bold;
  color: #0b2e59;
  cursor: pointer;
  outline: none;
}

.help-content p {
  margin-top: 6px;
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .help-modal {
    bottom: 80px;
    right: 16px;
    left: 16px;
    width: auto;
    max-height: 80vh;
    overflow-y: auto;
  }
}

/* REMOVE .help-close TO PREVENT CONFLICT */
