section#topBar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: -3rem;
  position: absolute;
  width: 100%;
}

.title.recipeEditorTitle {
  background: white;
  padding: 0.5rem;
  border-radius: 0.5rem;
}

div#close-button {
  background: black;
  color: white;
  padding: 0 0.5rem;
  font-size: 2rem;
}
div#close-button:hover {
  background: red;
}

#recipeEditorActions {
  display: flex;
}
#recipeEditorActions .pseudo-button {
  margin: 0;
}

.buttonCover {
  background: black;
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0.3;
  top: 0;
  display: none;
}

.buttonContainer {
  position: relative;
}

form#addRecipe {
  max-height: 0;
  transition: 1s;
  overflow: hidden;
  margin: 2px;
  background: purple;
  position: sticky;
  /* bottom: 2rem; */
  top: 0;
  z-index: 9;
}

div#addRecipeFormBottom {
  display: flex;
  justify-content: space-between;
}

div#addRecipeInputContainer {
  display: flex;
  margin: 1px;
  gap: 1px;
}
div#addRecipeInputContainer textarea {
  resize: vertical;
  min-height: 2.5rem;
  margin: 0.5px;
  border: none;
  padding: 4px;
  font-family: sans-serif;
}
div#addRecipeInputContainer input {
  max-height: 2.5rem;
  margin: 0.5px;
  border: none;
  padding: 4px;
}

.tooltip-container {
  position: relative;
}
.tooltip-container .tooltip-text {
  visibility: hidden;
  position: absolute;
  bottom: -28px;
  background: silver;
  padding: 2 10;
  margin: 5;
  border-radius: 0.25rem;
  color: black;
  right: 0;
  font-family: sans-serif;
  font-size: small;
  /* opacity: 0.8; */
}

.tooltip-container:hover .tooltip-text {
  visibility: visible;
}

/************************************************/
section#tableContainer {
  min-height: 85vh;
}

table {
  width: 97.5vw;
}

th {
  background: purple;
  color: white;
  padding: 5px;
  height: 1.75rem;
}

td {
  position: relative;
  border: thin solid black;
  padding: 0.5rem;
  white-space: pre-line;
  height: 1rem;
}

.changeTextArea {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  box-sizing: border-box;
  background: pink;
  font-size: 1rem;
  font-family: Arial, sans-serif;
  resize: vertical;
  border: gray;
}

.changeInput {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0.5rem;
  box-sizing: border-box;
  background: pink;
  font-size: 1rem;
  border: none;
}

.even {
  background: #c7c1c1;
}

input[type=checkbox] {
  transform: scale(2);
  transition: 2s;
}

div#changeFormContainer {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -118px;
  margin-left: -200px;
  background: purple;
  color: white;
  display: none;
  z-index: 999;
}

form#changeForm {
  padding: 5px;
  border: thin solid red;
  margin-bottom: 0;
}

#recipeEditorFooter {
  width: 100%;
  /* margin: 0 2px; */
  /* padding: 0.75rem; */
  position: fixed;
  bottom: 0;
  background: purple;
  color: white;
  display: flex;
  justify-content: space-between;
  transition: 2s;
  overflow: hidden;
  font-size: 0.9rem;
}

/*
div#pseudo-marquee {
    background: pink;
    color: black;
    margin: 0 .25rem;
    padding: 0.25rem 0.5rem;
    align-self: center;
    width: 33%;//DOESN'T have to be this but want a fixed width so buttons not jumping around

}
    */
#marquee-container {
  overflow: hidden;
  white-space: nowrap;
  color: white;
  margin: 0 0.25rem;
  padding: 0.25rem 0.5rem;
  align-self: center;
  width: 33%;
}

div#pseudo-marquee {
  display: block;
  font-weight: bold;
  animation: scroll-left 15s ease-in-out infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
    color: purple;
  }
  40% {
    transform: translateX(0);
  }
  60% {
    transform: translateX(0);
    color: white;
  }
  /*
  98% {
      transform: translateX(2%);
      opacity: 1.0;
  }
      */
  100% {
    transform: translateX(-100%);
    color: purple;
  }
}
#csvEditorActions {
  display: flex;
}

.row-action {
  background: white;
  color: black;
  padding: 0.75rem;
  /* margin: 0.25rem; */
  border: thin solid black;
  /* border-radius: 0.5rem; */
}
.row-action:hover {
  text-decoration: underline;
}

input#csvEditsButton {
  font-size: inherit;
  font-family: inherit;
}

.button-wrapper {
  display: flex;
  position: relative;
  background: white;
}
.button-wrapper:hover .button-cover {
  transform: translateY(100%);
}

.button-cover {
  position: absolute;
  background: black;
  width: 100%;
  height: 100%;
  opacity: 0.25;
  transition: 0.5s;
}

div#csv-editor-overlay {
  position: fixed;
  bottom: 0;
  background: black;
  opacity: 0.3;
  width: 100%;
  height: 100%;
  z-index: 1;
  max-height: 0;
  transition: 1s;
}

/*# sourceMappingURL=csv-editor.css.map */
