.delete-btn {
  color: #e84e40 !important;
}

.delete-btn:hover {
  cursor: pointer;
}

.textarea-container {
  position: relative;
}

.word-count {
  position: absolute;
  bottom: 5px;
  right: 25px;
  font-size: 12px;
  color: #A4A4A4;
}

.checkbox-options {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}

.selected-options {
  font-style: italic;
}

.toggle-link {
  color: #337ab7;
  cursor: pointer;
}

.comment {
  padding: 20px;
  margin-bottom: 20px;
  border: 2px solid #e7ebee;
  border-radius: 3px;
  position: relative;
}

.comment-header {
  color: #868B98;
  font-weight: bold;
}

.options-menu {
  position: absolute;
  top: 5px;
  right: 5px;
}

.ellipsis {
  cursor: pointer;
}

.options {
  display: none;
  position: absolute;
  right: 10px;
  top: 0;
  background: #e8e4e473;
}

.options-menu.active .options {
  display: block;
}

.option-delete {
  color: #e84e40;
}

.option {
  padding: 8px;
  margin: 0;
}
.option:hover {
  cursor: pointer;
  background: #e8e4e4;
}

.edit-note-container {
  display: none;
}

.listing-header {
  display: flex;
  justify-content: space-between;
}

.set-details-container {
  display: flex;
}
.set-details-container .item {
  flex: 1 100px;
}
.set-details-container .item label {
  font-weight: bold;
}
.set-details-container .item2 {
  flex: 2 100px;
}
.set-details-container .item2 label {
  font-weight: bold;
}

#preview-image {
  width: 50%;
  height: 200px;
  background-color: #f8f9fa;
}

.custom-file-upload {
  border: 1px solid #ccc;
  display: inline-block;
  padding: 6px 12px;
  cursor: pointer;
}

.question-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10px 0px 10px;
}
.question-nav-container .left, .question-nav-container .right {
  width: 100px;
}
.question-nav-container .middle {
  flex: 1;
  text-align: center;
}
.question-nav-container input {
  display: inline;
  width: 125px;
}

.form-buttons-container {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
}

.square {
  width: 25px;
  height: 25px;
  border: 1px solid #337AB7;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 4px;
}
.square.active {
  background-color: #337AB7;
}
.square.active .plus::before, .square.active .plus::after {
  background-color: white;
}

.plus::before,
.plus::after {
  content: "";
  position: absolute;
  background-color: #337AB7;
}

.plus::before {
  width: 40%;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.plus::after {
  width: 2px;
  height: 40%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.overview {
  display: flex;
  gap: 20px;
  /* Gap between the two boxes */
}

.overview-details-container {
  flex: 1;
}

.overview-details {
  border: 2px solid #e7ebee;
  border-radius: 3px;
  padding: 10px;
}

.overview-details-header {
  display: flex;
  justify-content: space-between;
}
.overview-details-header select {
  border: none;
  color: #337AB7;
}

.set-btn-container {
  display: flex;
  justify-content: space-between;
}

.search-link:hover {
  cursor: pointer;
}

.tags-overview {
  display: none;
}

.sidebar-btn {
  width: 90%;
  margin-left: 11px;
}
.sidebar-btn i {
  color: white;
}
.sidebar-btn span {
  color: white;
}
.sidebar-btn:hover {
  background-color: #286da0 !important;
  border-color: #286da0 !important;
}

.sidebar-btn-open a {
  background-color: #337ab7 !important;
  border-color: #2e6da4 !important;
}

.tag-badge {
  background-color: #e7e7e7;
  padding: 2px 8px 2px 5px;
  text-decoration: none !important;
  color: black !important;
  font-style: initial;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 5px;
}

.v-centered {
  padding-left: 2px;
  margin-left: 3px;
  color: #a1a1a1;
}

.days-of-week {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

#modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
  z-index: 101;
  width: 80%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
}

#modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #f5f5f5;
  border-bottom: 1px solid #ddd;
}

#modal-title {
  font-size: 18px;
  font-weight: bold;
}

#close {
  font-size: 24px;
  cursor: pointer;
}

#modal-icon {
  margin-bottom: 20px;
}
#modal-icon img {
  max-width: 50px;
}

#test-modal-body {
  display: none;
}

#final-modal-body {
  display: none;
}

#modal-footer {
  background-color: #f5f5f5;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #ddd;
  padding: 10px;
}

#modal-content {
  padding: 40px 70px 40px 70px;
  text-align: center;
}

.items-container {
  display: flex;
  column-gap: 10px;
}

.export-item {
  padding: 20px 30px;
  border: 1px solid lightgrey;
}
.export-item div {
  padding-top: 10px;
}
.export-item:hover {
  cursor: pointer;
  background: aliceblue;
}

#export-summary {
  padding: 30px;
}

.loader {
  border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: spin 2s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Tooltip */
.tooltip {
  visibility: hidden;
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px 8px;
  border-radius: 5px;
  position: absolute;
  bottom: 120%;
  left: 50%;
  transform: translateX(-50%);
  white-space: pre-wrap;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}

.info-icon:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

#url-error {
  color: red;
  display: none;
}

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