html {
  scrollbar-width: thin;
  scrollbar-color: rgba(117, 178, 61, 0.5) #F9FAFB;
}
html::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
html::-webkit-scrollbar-track {
  background: #F9FAFB;
  border-radius: 3px;
}
html::-webkit-scrollbar-thumb {
  background: rgba(255, 185, 73, 0.6);
  border-radius: 3px;
}
html::-webkit-scrollbar-thumb:hover {
  background: #75B23D;
}

.modal,
.modal-dialog,
.modal-body,
#businessModal div {
  scrollbar-width: thin;
  scrollbar-color: rgba(117, 178, 61, 0.5) #F9FAFB;
}
.modal::-webkit-scrollbar,
.modal-dialog::-webkit-scrollbar,
.modal-body::-webkit-scrollbar,
#businessModal div::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.modal::-webkit-scrollbar-track,
.modal-dialog::-webkit-scrollbar-track,
.modal-body::-webkit-scrollbar-track,
#businessModal div::-webkit-scrollbar-track {
  background: #F9FAFB;
  border-radius: 3px;
}
.modal::-webkit-scrollbar-thumb,
.modal-dialog::-webkit-scrollbar-thumb,
.modal-body::-webkit-scrollbar-thumb,
#businessModal div::-webkit-scrollbar-thumb {
  background: rgba(255, 185, 73, 0.6);
  border-radius: 3px;
}
.modal::-webkit-scrollbar-thumb:hover,
.modal-dialog::-webkit-scrollbar-thumb:hover,
.modal-body::-webkit-scrollbar-thumb:hover,
#businessModal div::-webkit-scrollbar-thumb:hover {
  background: #75B23D;
}

.scrollable-container {
  scrollbar-width: thin;
  scrollbar-color: rgba(117, 178, 61, 0.5) #F9FAFB;
}
.scrollable-container::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.scrollable-container::-webkit-scrollbar-track {
  background: #F9FAFB;
  border-radius: 3px;
}
.scrollable-container::-webkit-scrollbar-thumb {
  background: rgba(255, 185, 73, 0.6);
  border-radius: 3px;
}
.scrollable-container::-webkit-scrollbar-thumb:hover {
  background: #75B23D;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #F9FAFB;
  color: #111827;
  min-height: 100vh;
}

h1, h2, h3 {
  font-family: "Playfair Display", serif;
}

.sidebar {
  position: fixed;
  inset-y: 0;
  left: 0;
  width: 16rem;
  z-index: 50;
  background-color: white;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .sidebar {
    transform: translateX(0) !important;
  }
}
@media (max-width: 767.98px) {
  .sidebar {
    transform: translateX(-100%) !important;
    pointer-events: none !important;
  }
  .sidebar.open {
    transform: translateX(0) !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

@media (max-width: 767.98px) {
  body.sidebar-open .main-content {
    margin-left: 16rem !important;
    transition: margin-left 0.3s ease-in-out;
  }
}

body.sidebar-open {
  overflow: hidden;
}
body.sidebar-open .sidebar-toggle button {
  left: 256px;
}
body.sidebar-open #toggleIcon {
  transform: rotate(270deg);
}
body.sidebar-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 40;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  body.sidebar-open::before {
    opacity: 1;
    pointer-events: auto;
  }
}

#pageTitle {
  font-size: 1.5rem; /* default on desktop */
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px) {
  #pageTitle {
    font-size: 1.25rem; /* smaller on mobile */
    max-width: 60vw; /* prevent wrapping / overflow */
  }
}
#toggleIcon {
  transform: rotate(0deg);
}

.sidebar-toggle {
  transition: transform 0.3s ease-in-out;
  pointer-events: auto;
  z-index: 60;
  /* When sidebar is open, move toggle with it */
}
@media (min-width: 768px) {
  .sidebar-toggle {
    display: none;
  }
}
.sidebar-toggle button {
  width: 3rem;
  height: 3rem;
  background: white;
  border-radius: 0 1.5rem 1.5rem 0;
  box-shadow: 4px 0 12px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #75B23D;
  transition: background 0.2s, transform 0.2s;
  position: fixed;
  left: 0;
  top: 88px;
}
.sidebar-toggle button:hover {
  background: rgba(117, 178, 61, 0.6);
}
.sidebar-toggle i {
  transition: transform 0.3s ease;
}
body.sidebar-open .sidebar-toggle i {
  transform: rotate(180deg);
}

.mobile-menu {
  position: fixed;
  top: 70px;
  right: -100%;
  width: 80%;
  height: calc(100vh - 70px);
  background-color: rgba(117, 178, 61, 0.8);
  backdrop-filter: blur(10px);
  transition: right 0.3s ease-in-out;
  z-index: 100;
  padding: 2rem 1.5rem;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.mobile-menu.open {
  right: 0;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu ul li {
  margin: 1.5rem 0;
}
.mobile-menu ul li a {
  font-size: 1.25rem;
  font-weight: 500;
  color: white;
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu ul li a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 1.5rem;
  height: 1.25rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #374151;
  border-radius: 1px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(0.5rem) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: translateX(-1rem);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-0.5rem) rotate(-45deg);
}

.form-input {
  transition: all 0.2s ease;
}
.form-input:focus {
  box-shadow: 0 0 0 3px rgba(255, 185, 73, 0.3);
  border-color: #FFB949;
  outline: none;
}
.form-input.error {
  border-color: #EF4444 !important;
  animation: shake 0.5s;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-4px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(4px);
  }
}
.submit-btn {
  position: relative;
  overflow: hidden;
}
.submit-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.submit-btn:active::after {
  width: 200%;
  height: 200%;
}

.loading-spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #FFB949;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  animation: spin 1s linear infinite;
  margin-left: 0.5rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.search-container {
  position: relative;
  z-index: 1000;
}

#searchResults {
  z-index: 9999 !important;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-radius: 0.75rem;
  overflow: hidden;
}

body.search-open::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(2px);
  z-index: 9998;
  pointer-events: none;
  transition: opacity 0.2s;
}

.pro-dropzone,
#logoDropzone {
  transition: all 0.2s ease;
  background-color: white;
  border-color: #d1d5db;
}
.pro-dropzone.dz-drag-hover, .pro-dropzone.dz-over,
#logoDropzone.dz-drag-hover,
#logoDropzone.dz-over {
  border-color: #75B23D !important;
  background-color: rgba(117, 178, 61, 0.08) !important;
  transform: scale(1.02);
  box-shadow: 0 0 0 3px rgba(117, 178, 61, 0.15);
}
.pro-dropzone.has-image,
#logoDropzone.has-image {
  border-color: #75B23D !important;
  background-color: rgba(117, 178, 61, 0.05) !important;
}
.pro-dropzone .dz-message,
#logoDropzone .dz-message {
  margin: 0;
  color: #6b7280;
}
.pro-dropzone .dz-preview,
#logoDropzone .dz-preview {
  margin: 16px auto 0;
  width: 120px;
}

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