.students-container {
  display: grid;
}

.students-container-filters {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 10px;
  padding: 10px;
}

.students-list {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: repeat(6, 100px);
  gap: 5px;
  padding: 10px;
}

.student-box {
  display: grid;
  border: #aaaaaa;
  border-style: dotted;
  border-width: thin;
  font-size: small;
  min-width: 75px;
  text-wrap: wrap;
  z-index: 2;
}

.student-box .selected {
  border-width: 5px;
}

.student-container {
  display: grid;
  grid-template-rows: 65% 35%;
  border: #000000;
  border-style: solid;
  border-width: 2px;
  z-index: 1;
}

.draggable-student-infos {
  cursor: pointer;
  padding: 2px;
  text-align: center;
}

.student-infos-note {
  text-align: center;
  display: block;
  margin-top: 2px;
  padding: 5px;
}

.student-infos-note span {
  border-style: solid;
  border-width: 1px;
  border-color: var(--color-input-border);
  border-radius: var(--radius-medium);
  display: table;
  margin: 0 auto;
  padding: 3px;
  width: 25px;
}

.draggable-student-actions {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.draggable-student-actions div {
  align-content: center;
  cursor: pointer;
  text-align: center;
  width: 50%;
}

.panel {
  background: #86bbd8;
  display: none;
  padding: 10px;
  position: fixed;
  width: 35%;
  z-index: 3;
}

.student-form-container {
  display: grid;
  direction: column;
}

.student-form-top {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 0.4em;
  margin-block: 0.4em;
  margin-inline: 0.6em;
  padding-block: 0.6em;
  padding-inline: 0.8em;
}

.student-form-criterias-container {
  display: flex;
  flex-direction: column;
  margin-block: 0.4em;
  margin-inline: 0.6em;
  padding-block: 0.6em;
  padding-inline: 0.8em;
}

.student-form-criteria {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 0.6em;
  padding: 10px;
}

.student-form-criteria input,
.student-form-criteria svg {
  background: #86bbd8;
  display: block;
  width: 100%;
  max-width: 200px;
  font-family: var(--global-fontfamily);
  font-size: var(--fontsize-reg);
  border-style: none;
  margin-block: 0;
  padding: 0;
  color: black;
}

.student-form-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
