*,
 ::after,
 ::before {
  box-sizing: border-box;
}

ul {
  list-style-type: disc;
  padding: 0 0 0px 1em;
  line-height: 26px;
}


body.no-scroll {
  overflow: hidden;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #eee;
  margin: 0px;
  padding: 0px;
}

.sidebar-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  margin: 10px 0px;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.gap-5 {
  gap: 5px;
}

.justify-content-center {
  justify-content: center;
}

#overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.d-none {
  display: none !important;
}

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

.overflow-hidden {
  position: fixed;
  overflow-y: scroll;
  width: 100%;
}

.high-z {
  position: relative !important;
  z-index: 100 !important;
}

.text-danger {
  color: #dc3546;
}

.text-success {
  color: #188754;
}

.text-primary {
  color: #0088cc
}

.text-dark {
  color: #222222;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 0;
  color: #fff;
  border-radius: 5px;
}

.alert-warning {
  background-color: rgba(255, 217, 106, 0.5);
  color: #997404;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  font-family: 'Inter', Helvetica, Arial, Lucida, sans-serif!important;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  border: 0;
  border-radius: 5px;
}

.btn-primary {
  background-color: #0088cc;
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:active {
  background-color: #18B1FB;
}

.btn-danger {
  background-color: #dc3546;
  color: #ffffff;
}

.btn-danger:hover,
.btn-danger:active {
  background-color: #F25B69;
}

textarea {
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-clip: padding-box;
  border-radius: 5px;
  outline: none !important;
  resize: none;
  overflow: hidden;
  min-height: 60px;
}

textarea[readonly] {
  background-color: #f5f5f5;
  /* Light gray background */
  outline: none!important;
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.image-placeholder img {
  width: 400px;
}

.image-placeholder i {
  font-size: 80px;
}

.vc-alert-card {
  background: #e6f7ff;
  border: 1px solid #00a5f4;
  border-left: 6px solid #00a5f4;
  border-radius: 10px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  animation: vc-slideFadeIn 0.5s ease forwards;
  opacity: 0; /* start hidden, animation reveals */
}

.vc-alert-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  color: #00a5f4;
}

.vc-alert-message {
  flex: 1;
  font-size: 1rem;
  color: #004466;
  line-height: 1.5;
}

@keyframes vc-slideFadeIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .vc-alert-card {
    flex-direction: column;
    text-align: center;
  }
  .vc-alert-icon {
    margin-bottom: 0.5rem;
  }
}