.modal-overlay.salesperson {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-overlay.salesperson.hidden {
  display: none;
}

.modal-overlay.salesperson .modal-content {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  max-width: 960px; /* Økt fra 500px */
  width: 95%;        /* Tar mer av tilgjengelig bredde */
  position: relative;
  text-align: left;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.salesquote-float-container {
  position: fixed;
  top: 100px; /* Juster etter behov */
  right: 24px;
  z-index: 9999; /* Over nesten alt */
  background: white;
  padding: 12px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  max-width: 250px;
  width: max-content;
  font-family: inherit;
}

.salesquote-float-btn {
  background-color: #007bff;
  border: none;
  padding: 10px 16px;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease;
}

.salesquote-float-btn:hover {
  background-color: #0056b3;
}

.salesquote-help-text {
  margin-top: 12px;
  font-size: 0.95rem;
  color: #111;
  line-height: 1.4;
}

.salesquote-help-text strong {
  display: block;
  margin-bottom: 4px;
}