/* public/css/tabs/notes_tab.css */
/* ✅ Notes Tab styling (clean + collaborative feel) */

.gs-notes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gs-notes-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gs-notes-title {
  font-weight: 900;
  font-size: 16px;
}

.gs-notes-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gs-notes-status {
  font-size: 12px;
  opacity: 0.75;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
}

.gs-notes-btn {
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 800;
  cursor: pointer;
  background: rgba(0,0,0,.08);
}

.gs-notes-btn:hover {
  background: rgba(0,0,0,.12);
}

.gs-notes-sub {
  font-size: 12px;
  opacity: 0.7;
  margin-top: -4px;
}

.gs-notes-editor {
  width: 100%;
  min-height: 260px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 14px;
  padding: 14px;
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  resize: vertical;
  background: rgba(255,255,255,.7);
}

.gs-notes-editor:focus {
  border-color: rgba(0,0,0,.22);
}

.gs-notes-hints {
  display: grid;
  gap: 6px;
}

.gs-notes-hint {
  font-size: 12px;
  opacity: 0.75;
}

.gs-notes-hint span {
  font-weight: 900;
  opacity: 0.95;
}