/* Copyright Cosmic Technologies 2023 */

@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

body {
  margin: 0;
  font-family: Roboto, sans-serif;
}

#header1 {
  background-color: black;
  padding-top: 1%;
  padding-bottom: 1%;
  padding-left: 4%;
}

label {
  font-size: 17.5px;
}

input, select, textarea {
  font-size: 15px;
  font-family: Roboto, sans-serif;
}

#headerText {
  margin: 0;
  color: rgb(255, 215, 0);
  margin-bottom: 5px;
}

#blueText {
  color: rgb(0, 87, 183);
}

#newBtn {
  border: none;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 6px;
  padding-right: 6px;
  background-color: darkslategray;
  color: white;
}

#divider {
  border-left: 2px solid #c9c9c9;
  height: 350px;
}

.floatClass {
  float: left;
  margin-top: 2%;
  margin-left: 4%;
}

.notes {
  border: 2px solid lightgray;
  padding-right: 15px;
  padding-left: 15px;
  margin-bottom: 2%;
  border-radius: 10px;
  background-color: ;
}

.hidden {
  display: none;
  opacity: 0;
}

#disclaimer {
  position: absolute;
  bottom: 0;
  margin-bottom: 5px;
  right: 50px;
  color: lightgray;
}
#disclaimer-link, #disclaimer-link:visited {
  color: lightgray;
}
#haventFilledOutDiv, #alreadyExistsDiv, #emptyDiv {
  color: red;
  margin: bottom;
}
.export-button, .delete-button, .edit-button {
  margin-bottom: 8px;
  margin-right: 3px;
}
button {
  border-color: transparent;
  border-radius: 5px;
  background-color: darkslategray;
  color: white;
  font-family: Roboto, sans-serif;
  transition: background-color 250ms linear;
}
button:hover {
  background-color: #000061;
}

#darkModeSwitch {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 5%;
}
#disclaimer-body {
  background-color: black;
  color: white;
}
#disclaimer-text {
  margin: 5%;
}

#tab-wrapper {
  overflow: hidden;
  background-color: white;
  text-align: center;
  margin-top: 2%;
  border-bottom: 1px black solid;
}
#tab-wrapper button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #333;
}
#tab-wrapper button:hover {
  background-color: #555;
  color: #CCC;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#tab-wrapper button.active {
  background-color: #333;
  color: #BBB;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  animation: fadeEffect3 1s;
}

#dark-tab-wrapper {
  overflow: hidden;
  background-color: #202021;
  text-align: center;
  margin-top: 2%;
  border-bottom: 1px white solid;
}
#dark-tab-wrapper button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  padding-top: 10px;
  padding-bottom: 10px;
}
#dark-tab-wrapper button:hover {
  background-color: #aaa;
  color: #333;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#dark-tab-wrapper button.active {
  background-color: #ccc;
  color: #444;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  animation: fadeEffect2 1s;
}

#folderTab {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: default;
  transition: 0.3s;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #333;
}
#folderTab:hover {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: default;
  transition: 0.3s;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #333;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
}
.tabcontent {
  animation: fadeEffect 1s;
}
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}
@keyframes fadeEffect2 {
  from {
    background-color: #aaa;
    color: #333;
  }
  to {
    background-color: #ccc;
    color: #444;
  }
}
@keyframes fadeEffect3 {
  from {
    background-color: #555;
    color: #CCC;
  }
  to {
    background-color: #333;
    color: #BBB;
  }
}

#drop-area {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  user-select: none;
  pointer-events: none;
}
#noteTab {
  margin-left: 5%;
}
#folderTab {
  margin-left: 1%;
}
