body {
  background-color: #19062b;
  color: #C137EB;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  flex-flow: row nowrap;
}
header h1 {
  font-size: 8px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
}
header hr {
  width: 60%;
  border-color: #C137EB;
  border-width: 1px;
  border-style: solid;
}
header p {
  text-align: center;
}
header #left {
  width: 33%;
}
header #center {
  align-self: center;
  width: 100%;
}
header #right {
  display: flex;
  flex-flow: row nowrap;
  justify-content: end;
  align-items: center;
  height: fit-content;
  width: 33%;
  background-color: #C137EB;
  color: #19062b;
}
header #right p {
  margin: 0;
}
header #right button {
  display: flex;
  flex-flow: row nowrap;
  background: none;
  border: none;
  font-family: "Courier New", Courier, monospace;
  font-size: medium;
  padding: 2px 5px;
}
header #right button p {
  display: none;
}
header #right button:hover p {
  display: block;
  margin: 0;
  padding: 0;
}
header #right div {
  height: 15px;
  width: 0px;
  margin-left: 8px;
  border-left: 2px dotted #19062b;
}
header #right #userDisplay {
  overflow: hidden;
  height: 1em;
  width: 2em;
}

main {
  display: block;
  padding: 1em;
}

#noteInput {
  padding: 1em;
  margin: 1em 3em;
  border-top: 2px dashed #C137EB;
}

#notes,
#toDo,
#favoris,
#calendrier,
#login {
  margin: 0.5em;
  border: 2px dashed #C137EB;
}

#login {
  margin-top: 5em;
  justify-self: center;
  width: fit-content;
}
#login #form {
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  gap: 1em;
  margin: 1em;
}
#login #form div {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  width: 22em;
}
#login #form input {
  background: none;
  border: 1px solid #C137EB;
  color: #C137EB;
  padding: 0 1em;
}
#login #form button {
  background-color: #C137EB;
  border: 2px solid #C137EB;
  color: #19062b;
  font-family: "Courier New", Courier, monospace;
}
#login #form button:hover {
  background-color: #19062b;
  color: #C137EB;
}

#describe {
  display: none;
}

#toDoContainer {
  display: flex;
  flex-flow: column nowrap;
  height: 94%;
}

#toDodossier {
  width: 100%;
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #C137EB rgba(255, 255, 255, 0);
  min-width: 10em;
}

#toDoProgress {
  padding: 1em;
}
#toDoProgress .progressBar {
  display: flex;
  flex-flow: row nowrap;
  width: 100%;
  height: 1em;
}
#toDoProgress .progressBar .done {
  background-color: #897ff6;
}
#toDoProgress .progressBar .sent {
  background-color: #e29246;
}
#toDoProgress .progressBar .ok {
  background-color: #54b655;
}

.doss {
  display: flex;
  flex-flow: column wrap;
  padding-left: 0.5em;
}
.doss .btnDossier {
  background-color: #C137EB;
  border: none;
  color: #19062b;
  text-align: start;
  margin: 5px;
  cursor: pointer;
  font-family: "Courier New", Courier, monospace;
  font-size: medium;
}
.doss a,
.doss .btnNote,
.doss .btnProject {
  margin: 0;
  margin-left: 1.5em;
  padding: 2px;
  color: #C137EB;
  text-decoration: none;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: start;
}
.doss .btnProjectDone {
  margin: 0;
  margin-left: 1.5em;
  padding: 2px;
  color: #897ff6;
  text-decoration: none;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: start;
}
.doss .btnProjectSent {
  margin: 0;
  margin-left: 1.5em;
  padding: 2px;
  color: #e29246;
  text-decoration: none;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: start;
}
.doss .btnProjectOK {
  margin: 0;
  margin-left: 1.5em;
  padding: 2px;
  color: #54b655;
  text-decoration: none;
  font-family: "Courier New", Courier, monospace;
  font-size: 14px;
  cursor: pointer;
  background: none;
  border: none;
  text-align: start;
}
.doss a:hover {
  text-decoration-thickness: 2px;
  text-decoration-line: underline;
  text-decoration-style: dashed;
}
.doss .btnNote:hover,
.doss .btnNote:active {
  background-color: #C137EB;
  color: #19062b;
  width: fit-content;
}

.hide {
  padding-left: 0.5em;
}
.hide .btnDossier {
  background-color: rgba(255, 255, 255, 0);
  color: #C137EB;
  border: none;
  margin: 5px;
  cursor: pointer;
  font-family: "Courier New", Courier, monospace;
  font-size: medium;
}
.hide a,
.hide .btnNote,
.hide .btnProject,
.hide .btnProjectDone,
.hide .btnProjectOK,
.hide .btnProjectSent {
  display: none;
}
.hide .btnDossier:hover {
  background-color: #C137EB;
  color: #19062b;
}

.headSection {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  padding: 0 1em;
  background-color: #C137EB;
  color: #19062b;
}
.headSection h2 {
  font-size: 1em;
  margin: 0;
  align-self: center;
}
.headSection p {
  background-color: rgba(255, 255, 255, 0);
  border: none;
  align-self: center;
  align-content: center;
  margin: 0;
  padding: 0;
}
.headSection a {
  color: rgba(255, 255, 255, 0);
  font-family: "Courier New", Courier, monospace;
}
.headSection a:hover {
  text-decoration: none;
  color: #19062b;
}

.crt-screen {
  position: relative;
  width: auto;
  height: auto;
  min-height: 100vh;
}

.crt-screen::before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(110, 30, 230, 0.1176470588) 0.1em, transparent 0.1em);
  background-size: 100% 0.2em;
  pointer-events: none;
}

@media (min-width: 700px) {
  header #right {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-around;
  }
  header #right #userDisplay {
    text-overflow: clip;
    height: 1em;
    width: 63%;
  }
  #fullPage {
    height: 41em;
  }
  #fullPage #favoris {
    height: 100%;
  }
  #fullPage #favContent {
    display: flex;
    flex-flow: column wrap;
    height: 96%;
    justify-content: start;
    align-content: start;
  }
  #fullPage #notes {
    height: 100%;
  }
  #fullPage #notes section {
    height: 96%;
  }
  #fullPage #noteInput {
    border-top: none;
    border-left: 2px dashed #C137EB;
    margin-right: 0;
    margin-left: 1em;
    padding: 1em 2em;
    height: 96%;
    overflow-y: scroll;
    scrollbar-color: #C137EB rgba(255, 255, 255, 0);
  }
  #fullPage #toDo {
    height: 100%;
  }
  #favContent {
    display: flex;
    flex-flow: column wrap;
    height: 94%;
    width: 100%;
    justify-content: start;
    align-content: start;
    overflow-x: scroll;
    scrollbar-width: thin;
    scrollbar-color: #C137EB rgba(255, 255, 255, 0);
  }
  #calendarContent {
    display: flex;
    flex-flow: column wrap;
    height: 90%;
    justify-content: start;
    align-content: start;
  }
  #notes section {
    display: flex;
    flex-flow: row nowrap;
    height: 92%;
  }
  #notes #inputPlaceholder {
    width: 100%;
  }
  #noteInput {
    border-top: none;
    border-left: 2px dashed #C137EB;
    margin: 5px;
    margin-right: 0;
    margin-left: 1em;
    padding: 0 2em;
    height: 100%;
    overflow-y: scroll;
    scrollbar-color: #C137EB rgba(255, 255, 255, 0);
  }
  #toDoContainer {
    flex-flow: row nowrap;
  }
  #toDoProgress {
    width: 100%;
  }
  .grid {
    display: grid;
    grid-template: 45vh 45vh/50% 50%;
  }
}

/*# sourceMappingURL=style.css.map */
