.coming-soon {
  font-family: "Arial", sans-serif; /* Replace with your desired font */
  font-weight: bold;
  font-size: 48px;
  background: linear-gradient(45deg, #3d7fc9 0%, #7b5eb8 50%, #8a63b3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Empty state (placeholder visible) */
.custom-input:placeholder-shown {
  border-bottom: 1px solid gray; /* subtle bottom border */
  background-color: transparent;
}

/* Filled state (value typed in) */
.custom-input:not(:placeholder-shown) {
  border-bottom: none; /* remove border when filled */
  background-color: transparent;
}

/* Focus state */
.custom-input:focus {
  border: initial; /* browser default border */
  outline: auto; /* show default focus outline */
  box-shadow: none; /* remove Bootstrap glow */
}
/* Reusable brand button */
.brand-btn {
  height: 60px;
  background: #8a63b3;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 80px;
  padding: 0.65rem 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Hover effect */
.brand-btn:hover {
  background: #3d7fc9;
}

/* Focus effect */
.brand-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(141, 99, 179, 0.5); /* subtle purple focus glow */
}
.btn .btn-text {
  color: white;
}
/* Icon inside the button */

/* Overlay background */
#loadingOverlay {
  display: none; /* hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 67%);
  z-index: 9999;

  justify-content: center;
  align-items: center;
  flex-direction: column; /* if you want vertical stacking */
}

/* Logo animation */
#loadingOverlay .loading-logo {
  width: 120px;
  animation: fadeInOut 3s infinite;
}

@keyframes fadeInOut {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

nav#sidebar {
  background-color: white;
  border-radius: 10px;
  width: 261px;
}
span.menu-title {
  font-size: 16px !important;
  color: black !important;
}
li.nav-item.nav-category {
  font-size: 12px !important;
  color: #3d7fc9 !important;
}
@media (min-width: 992px) {
  .sidebar-icon-only .sidebar {
    width: 70px !important;
    background: #fff;
  }
}
.navbar .navbar-menu-wrapper {
  width: calc(100% - 262px);
}
.brandcolor {
  color: #3d7fc9 !important;
}
.brandcolor2 {
  color: #8a63b3 !important;
}

.centsidebox {
  border: 1px solid #dee2e6;
  font-weight: 500;
  border-radius: 4px;

  padding: 11px;
}
/* Hide initially */
.success-state {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: all 0.3s ease;
  text-align: center;
}

/* When active */
.success-state.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

/* Form fade out */
#createLinkForm.fade-out {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

/* Link box */
.link-box {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}

.link-box input {
  flex: 1;
  padding: 10px;
}

.success-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.floatinglabel {
  font-weight: 700;
  font-size: 19px;
  margin-top: 30px;
}
.hidden-important {
  display: none !important;
}
.mobile-only {
  display: flex;
}

@media (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .mobile-pt {
    padding-top: 10px !important;
  }
}

.card.bg-white.shadow-sm {
  padding: 30px !important;
}
.btn.btn-light.option-btn.spacebetween {
  margin: 20px;
}
#errorBox {
  display: none;
  padding: 10px 15px;
  margin-top: 10px;
  border-radius: 5px;
}

/* Error */
#errorBox.error {
  background-color: #f44336; /* red */
  color: white;
}

/* Success */

/* Alternatives list (brand styled) */
#errorBox.info {
  background-color: #f4f4f9; /* subtle light bg */
  color: #333;
}

#errorBox.info p {
  margin: 0 0 8px 0;
  font-weight: 600;
}

#errorBox .alt-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
  margin: 0;
}

#errorBox .alt-list li {
  display: inline-block;
}

#errorBox .alt-link {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  background-color: #8a63b3; /* main brand color */
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  font-size: 16px;
}

#errorBox .alt-link:hover {
  background-color: #3d7fc9; /* sub brand color on hover */
  transform: translateY(-2px);
}
.badge.bg-warning.text-white {
  background-color: #8a63b3 !important;
}
@media screen and (max-width: 756px) {
nav#sidebar {
    display: none!important;
}
.table-responsive {
    overflow: hidden;
}
.hiddenmobile {
      display: none!important;
}

}