/* page-notes_entretien.css */
/* Page 2 – Prise de notes entretien */

/* Container principal */
.notes-section {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

/* Textarea responsive */
#notes-entretien {
  width: 100%;
  max-width: 70%;            /* Sur desktop */
  min-height: calc(100vh - 200px); /* Prend presque tout l'écran (header + marge) */
  margin: 0 auto;
  padding: 1rem;
  font-size: 1.1rem;
  line-height: 1.5;
  border: 1px solid #ccc;
  border-radius: 8px;
  resize: vertical;
  box-shadow: var(--shadow);
  background-color: #fff;
}

/* Mobile : 100% de largeur */
@media (max-width: 768px) {
  #notes-entretien {
    max-width: 100%;
    min-height: calc(100vh - 150px); /* Ajusté pour écrans petits */
  }
}