@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");
.footer-custom {
  padding: 1rem 0;
  background-color: #f8f9fa;
  border-top: 1px solid #e7e7e7;
}
.footer-custom span,
.footer-custom a {
  color: #6c757d;
  font-size: 0.875rem;
}
.footer-custom a:hover {
  text-decoration: underline;
}
.footer-custom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.my-main-content {
  margin-bottom: 0px;
}

.my-input-group {
  display: flex;
  align-items: center;
}

.my-input-group input {
  flex: 1;
}

.my-input-group button {
  margin-left: -1px; /* To avoid double borders */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.note-editor .note-toolbar .btn i {
  color: #000 !important; /* Adjust this color as needed */
}

.note-editor .note-toolbar .btn {
  background-color: #fff !important; /* Ensure button background is not blending with the icons */
}
/*# sourceMappingURL=app.css.map */

.marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.marquee span {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 10s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}


.folder-item-wrapper:hover .delete-folder-btn {
  display: block !important;
}

