
#suggest-screen {
  position: fixed;
  top: 0;
  left: 260px;
  width: calc(100% - 260px);
  height: 100vh;

  background-color: #1a1a1a;
  z-index: 10001;

  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;

  padding: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}


#suggest-screen .quiz-content {
  width: 95%;
  max-width: 1200px;
}

#suggest-monument-screen .quiz-content {
  width: 95%;
  max-width: 1200px;
}


.suggest-modal {
  width: 100%;
  background: #2b2b2b;
  border: 1px solid #444;
  border-radius: 10px;
  box-shadow: none;
  color: #fff;
}


.suggest-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.suggest-title {
  font-weight: bold;
  font-size: 18px;
}

.suggest-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

.suggest-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.suggest-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.suggest-label {
  font-weight: bold;
  font-size: 14px;
  opacity: 0.95;
}

.suggest-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  padding: 10px 12px;

  cursor: pointer;
  background: rgba(0,0,0,0.15);
}

.suggest-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.suggest-arrow { opacity: 0.9; }

.suggest-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;

  max-height: 260px;
  overflow: auto;

  background: #1f1f1f;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 8px;

  z-index: 10060;
}

.suggest-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  padding: 10px 12px;
  cursor: pointer;
}

.suggest-option:hover { background: rgba(255,255,255,0.08); }

.suggest-option-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.suggest-ok { opacity: 0.95; }

.suggest-textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(0,0,0,0.15);
  color: #fff;
  resize: vertical;
}

.suggest-error {
  background: rgba(255, 0, 0, 0.12);
  border: 1px solid rgba(255, 0, 0, 0.35);
  border-radius: 8px;
  padding: 10px 12px;
  white-space: pre-wrap;
}

.suggest-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin-top: 2px;
}

.suggest-btn {
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  background: #555;
  color: #fff;
}

.suggest-btn:hover { background: #777; }

.suggest-btn-primary { background: #ff8c00; }
.suggest-btn-primary:hover { background: #cc7000; }

.suggest-file {
  width: 100%;
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 10px;
  padding: 10px 12px;
  background: rgba(0,0,0,0.15);
}

.suggest-file::file-selector-button {
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.14);
  color: #fff;
  padding: 8px 12px;
  border-radius: 8px;
  margin-right: 12px;
  cursor: pointer;
}

.suggest-file::file-selector-button:hover {
  background: rgba(255,255,255,0.22);
}

.suggest-modal {
  width: 95%;
  max-width: 1200px;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}


.suggest-header {
  padding: 0 0 18px 0 !important;
  border-bottom: none !important;
}


.suggest-body {
  padding: 0 !important;
}

.suggest-text {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  padding: 10px 12px;
  background: rgba(0,0,0,0.15);
  color: #fff;
}
#contact-screen .quiz-content {
  width: 95%;
  max-width: 1100px;
}

#contact-screen .suggest-modal {
  padding: 28px;
  border-radius: 14px;
}

#contact-screen .suggest-title {
  font-size: 22px;
}

#contact-screen .suggest-label {
  font-size: 16px;
}

#contact-screen .suggest-text,
#contact-screen .suggest-textarea {
  font-size: 16px;
  padding: 12px 14px;
}

#contact-screen .suggest-text {
  height: 44px;
}

#contact-screen .suggest-textarea {
  min-height: 160px;
}

#contact-screen .suggest-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

#contact-screen .suggest-btn {
  font-size: 16px;
  padding: 10px 18px;
}

#contact-screen .suggest-btn-secondary {
  background: #3a3a3a;
  border: 1px solid #555;
}
