html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus { 
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;

  background: #EDF9FF;
  background: linear-gradient(214deg,rgba(237, 249, 255, 1) 0%, rgba(211, 225, 232, 1) 48%, rgba(237, 249, 255, 1) 100%);
}

.dt-search{
  margin-bottom:1em;
}

.container{
  background:transparent;
}


.box__dragndrop,
.box__uploading,
.box__success,
.box__error {
  display: none;
}

.box.has-advanced-upload {
  background-color: white;
  outline: 2px dashed black;
  outline-offset: -10px;
}
.box.has-advanced-upload .box__dragndrop {
  display: inline;
}



.slider-wrapper {
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.slider-container {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 16px; /* Space for scrollbar */
  -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

/* Hide scrollbar in modern browsers */
.slider-container::-webkit-scrollbar {
  display: none;
}

.slider-card {
  flex: 0 0 calc(33.33% - 11px); /* Displays 3 cards on screen */
  scroll-snap-align: start;
  background-color: #f0f4f8;
  padding: 40px 20px;
  border-radius: 8px;
  text-align: center;
}

/* Responsive adjustment for smaller screens */
@media (max-width: 768px) {
  .slider-card {
    flex: 0 0 calc(80% - 16px); /* Displays 1 full card and peeks the next */
  }
}

.avatar {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  flex-shrink: 0;
}

.avatar-event {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  flex-shrink: 0;
  flex-wrap:wrap;
}

.avatar-large {
  width: 160px;
  height:160px; 
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  font-weight: 600;
  flex-shrink: 0;
}

.vertical-divider {
  width: 1px;
  height: 32px;
  background: #dee2e6;
}

.contact-details
{
  font-size:14px;
}

.drop-zone {
  width: 100%;
  max-width: 400px;
  height: 200px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 4px dashed #cccccc;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
}

/* Class triggered via JavaScript on drag hover */
.drop-zone--over {
  border-color: #009578;
  background-color: #f0fdf4;
}

.no-transition {
  transition: none !important;

}

.list-group-item-transition
{
  transition: 2s;
}

/* CSS */
.floating-btn {
  /* Positioning */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000; /* Ensures it stays on top of other content */

  /* Styling */
  padding: 12px 24px;

  cursor: pointer;



}

/* Hover Effect */
