h3 {
  color: #3b3b3b !important;
  margin: 15px 0;
}

a {
  text-decoration: none !important;
}

small .text-muted {
  font-size:  14px !important;;
  margin-top:30px !important;
  color:#222 !important;
}

.form-check-input[type=radio] {
    border: 2px solid #ccc;
}
.sidebar {
  /* background-color: #f8f9fa; */
  height: 90vh;
  overflow-y: hidden;
  height: max-content;
border-radius: 8px;
/* box-shadow: 0 4px 12px rgba(180, 180, 180, 0.1); */
}


.pulse {
  height: 10px;
  width: 10px;
  background: #faa03f;
  border-radius: 50%;
  display: inline-block;
  animation: radial-pulse 2s infinite;
}
@keyframes radial-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 165, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
  }
}

.text-primary {
  margin-left: 8px;
}
.search-box {
  position: relative;
  display: flex;
  border-radius: 5px;
  background: #f1f1f1;
  overflow: hidden;
}
.search-box input[type="search"] {
  border: none;
  background: transparent;
  padding: 0.5rem 1rem;
  flex: 1;
  outline: none;
}
.search-box button {
  background-color: #004d89;
  border: none;
  color: white;
  width: 48px;
}

.nav-tabs {
  border-bottom: none;
  justify-content: space-between;
}
.nav-tabs .nav-link {
  color: #444;
  background: none;
  border: none;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  position: relative;
}
.nav-tabs .nav-link.active {
  color: #003c71;
}
.nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 3px;
  background: #003c71;
}
.nav-tabs .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #003c71;
}

.tab-content{
  padding: 30px 10px;
  overflow-y: auto;
  height: calc(900px - 320px - 56px);
}

/* Keep the tabs visible while scrolling main content */
.main_content .nav-tabs {
  position: sticky;
  top: 55px;
  z-index: 5;
  background: #fff;
}

.custom-divider {
  margin: 20px 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.start-line {
  height: 4px;
  width: 60px; /* orange part length */
  background-color: #003c71; /* orange shade */
}

.rest-line {
  flex: 1;
  height: 1px;
  background-color: #ccc; /* light gray */
}

.main-content {
  height:max-content;
  flex: 0 0 45%;
    max-width: 100%;
  background-color: #fff;
  border-radius: 8px;
  /* box-shadow: 0 4px 12px rgba(180, 180, 180, 0.1); */
}



/*Mobile Right Side Bar*/
#rightSidebar {
  transition: all 0.4s ease;
  overflow-y: hidden;
}
.main-expanded {
  width: 100% !important;
  transition: all 0.4s ease;
}
#toggleSidebarBtn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: white !important;
}
#toggleSidebarBtn i {
  font-size: 1.2rem;
}
#overlay {
  display: none;
}

@media (max-width: 767px) {
  .main-content {
  flex: 0 0 100%;
    max-width: 100%;
  
}
.container-fluid{
  padding:15px 0 !important;
}
  #rightSidebar {
    position: fixed !important;
    top: 175px; /* below sticky header + banner */
    right: -100%;
    width: 300px;
    height: calc(100vh - 175px);
    background: #fff;
    z-index: 1040;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease;
  }
  #rightSidebar.active {
    right: 0;
  }
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1039;
    display: none;
  }

  #rightSidebar.slide-in {
    right: 0;
    transition: right 0.4s ease;
  }
  #overlay.active {
    display: block;
  }
}

.webinar-scroll-mobile-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f8f9fa;
  z-index: 1038;
  border-top: 1px solid #ddd;
  padding: 0.75rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.webinar-scroll-mobile {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  flex: 1;
  scroll-behavior: smooth;
}
.webinar-scroll-mobile::-webkit-scrollbar {
  display: none;
}
.webinar-scroll-mobile .webinar-card {
  min-width: 45%;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 6px;
  padding: 0.5rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.card-scrollbox {
  background-color: #fff;
  max-height: 100vh;
  overflow-y: auto;
  padding: 10px 15px;
}

.webinar-card img {
  border-radius: 6px;
}
.sidebar-left {
  background-color: transparent;
  display: none !important;
  position: sticky;
  top: 55px;
  z-index: 1;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .webinar-scroll-mobile-wrapper {
    display: none !important;
  }
  .sidebar-left {
    display: block !important;
  }
  
}

.card {
  border: 1px solid var(--form-border-light) !important;
  border-radius: 10px;
}

:root {
  --form-border-light: #ccc;
  --form-border-focus: #222;
  --form-bg-light: #fff;
  --form-text-light: #222;
}

.form-control,
.form-select {
  border: 1px solid var(--form-border-light) !important;
  background-color: var(--form-bg-light);
  color: var(--form-text-light);
  box-shadow: none !important;
  transition: border-color 0.2s ease;
  width:100% !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--form-border-focus) !important;
  outline: none !important;
}

.form-label {
  font-weight: 500;
}

.form-check-label {
  margin-left: 0.25rem;
  font-weight: 400;
  font-size: small;
}

a.forgot-password {
  color: #0d6efd;
  text-decoration: none;
  margin-left: auto;
}

#categorySelect {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.375rem;
  background-color: #fff;
  appearance: none;
  box-sizing: border-box;
  margin-bottom: 5px;
}

#rightSidebar #registerForm {
  height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.25rem;
}
#rightSidebar .card-body {
  padding: 0;
}
#rightSidebar #loginForm,
#rightSidebar #registerForm {
  padding: 1.25rem;
}
.main_content.active {
  display: block;
}
.btn .btn-primary .w100 {
  background-color: #036 !important;
  border-color: #036 !important;
}
.author-img {
  width: 75px;
  min-width: 75px;
  height: 75px;
  border-radius: 50%;
}
.author-sec {
  column-gap: 15px;
}
.webinar-list-sec small.text-muted {
  font-size: 14px;
}
.main_content .js-video-player_new {
  max-width: 100% !important;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background-color: #000;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

#webinarContainer {
  /* border: 2px solid rgba(0, 0, 0, 0.125);
  border-radius: 6px; */
}

.share-icon {
  column-gap: 5px;
}

.webinar-label {
  position: sticky;
  top: 0;
  background: #003366;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem;
  z-index: 2;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.container-fluid{
  /* padding: 50px; */
  background-color: #FCFCFC !important;
}

.date-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

h6{
  color:#3b3b3b;
}
p{
  color:#222;
}
.btn .btn-primary .w-100 :hover{
  background-color: rgb(0, 66, 131);
  transform: scale(1.02) !important;
  transition: all 0.3s ease !important;
}

.btn-outline-warning {
  color: #036 !important;
    border-color: #036 !important;
}

.btn-outline-warning:hover {
  background-image: linear-gradient(to right, #003366, #336699) !important;
  color: white !important;
}

.ms-5 {
    margin-left: 0rem !important
}

.pt-5 {
  padding-top: 0rem !important;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #222;
  color: white;
  border: none;
  border-radius: 50%;
  /* padding: 20px; */
  font-size: 42px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 80px;
  height: 80px;
}

.play-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

#loginPopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 1050;
  display: none;
  max-width: 90%;
  width: 400px;
  text-align: center;
}

#loginOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  display: none;
}


  .initial-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #007bff; /* Fallback color */
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    user-select: none;
  }

  /* Optional: randomize bg colors */
  .initial-avatar.bg-1 { background-color: #6c5ce7; }
  .initial-avatar.bg-2 { background-color: #00b894; }
  .initial-avatar.bg-3 { background-color: #fd79a8; }
  .initial-avatar.bg-4 { background-color: #e17055; }
  .initial-avatar.bg-5 { background-color: #0984e3; }

  
@media (min-width: 992px) {
        
        #rightSidebar {
          overflow: visible !important;
          position: sticky;
          top: 175px; /* below sticky header + banner */
        }

        .speaker-float-img {
          left: -125px !important;
          z-index: 10;
          width: 100px;
          height: 100px;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
       

        .position-relative.overflow-visible {
          overflow: visible !important;
        }

        .p-2 {
    padding: 1.5rem !important;
}
      }


/*Review */
/* === Review Container === */
.review-section {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
}

/* === Form Headings === */
.review-section h5,
.review-section h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

/* === Star Rating === */
.review-section .star-rating i {
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
  margin-right: 4px;
  transition: color 0.2s;
}

.review-section .star-rating i.active,
.review-section .star-rating i:hover,
.review-section .star-rating i.hovered {
  color: #f5a623;
}

/* === Textarea Styling === */
.review-section textarea {
  width: 100%;
  min-height: 100px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 1rem;
  font-size: 1rem;
  resize: vertical;
}

/* === Submit Button === */
.review-section button {
  background-color: #006aff;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.2s;
}

.review-section button:hover {
  background-color: #0054c2;
}

/* === Previous Review Item === */
.review-section .review-item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.review-section .review-item .reviewer {
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.review-section .review-item .reviewer img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
}

.review-section .review-item .stars {
  color: #f5a623;
  margin-left: auto;
}

.review-section .review-item small {
  color: #666;
  font-size: 0.9rem;
}


      .linkedin-btn{
         position: absolute;
                  left: 50%;
                  bottom: -20px;
                  transform: translateX(-50%);
                  background: white;
                  border-radius: 8px;
                  padding: 6px 10px;
                  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      }

      .linkedin-descp{
         color: #222;
                  font-size: 14px;
                  font-weight: 400;
                  line-height: 1.4;
                  margin: 0 10px 30px;
      }
.linkdenin_register-wrapper{
      position: relative;
                background-color: #f79433;
                padding: 5px;
                border-radius: 12px;
                text-align: center;
                width: fit-content;
                margin: 0 auto;
                font-family: system-ui, sans-serif;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
                }

                #toggleEditorBtn{
                  background: none; border: none; padding: 0; font-size: 1.1rem;
                }

                 .editor-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease;
  }

  .editor-wrapper.active {
    max-height: 600px; /* adjust as needed */
    opacity: 1;
  }

img.scaled-image {
  border: none !important;
  margin: 0 !important;
}
a:hover {
  color: #0056b3;
  text-decoration: none !important;
=======
h3 {
  color: #3b3b3b !important;
  margin: 15px 0;
}


a {
  text-decoration: none !important;
}

small .text-muted {
  font-size:  14px !important;;
  margin-top:30px !important;
  color:#222 !important;
}

.form-check-input[type=radio] {
    border: 2px solid #ccc;
}
.sidebar {
  background-color: #f8f9fa;
  height: 100vh;
  overflow-y: hidden;
  height: max-content;
border-radius: 8px;
/* box-shadow: 0 4px 12px rgba(180, 180, 180, 0.1); */
}


.pulse {
  height: 10px;
  width: 10px;
  background: #003c71;
  border-radius: 50%;
  display: inline-block;
  animation: radial-pulse 2s infinite;
}
@keyframes radial-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 165, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
  }
}

.text-primary {
  margin-left: 8px;
}
.search-box {
  position: relative;
  display: flex;
  border-radius: 5px;
  background: #f1f1f1;
  overflow: hidden;
}
.search-box input[type="search"] {
  border: none;
  background: transparent;
  padding: 0.5rem 1rem;
  flex: 1;
  outline: none;
}
.search-box button {
  background-color: #004d89;
  border: none;
  color: white;
  width: 48px;
}

.nav-tabs {
  border-bottom: none;
  justify-content: space-between;
}
.nav-tabs .nav-link {
  color: #444;
  background: none;
  border: none;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  position: relative;
}
.nav-tabs .nav-link.active {
  color: #003c71;
}
.nav-tabs .nav-link.active::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 0;
  height: 3px;
  background: #003c71;
}
.nav-tabs .nav-link.active::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #003c71;
}

.tab-content{
  padding: 30px 10px;
}

/* Keep the tabs visible while scrolling main content */
.main_content .nav-tabs {
  position: sticky;
  top: 55px;
  z-index: 5;
  background: #fff;
}

.custom-divider {
  margin: 20px 0;
  display: flex;
  align-items: center;
  width: 100%;
}

.start-line {
  height: 4px;
  width: 60px; /* orange part length */
  background-color: #f6a539; /* orange shade */
}

.rest-line {
  flex: 1;
  height: 1px;
  background-color: #ccc; /* light gray */
}

.main-content {
  height: 1200px;
  flex: 0 0 50%;
    max-width: 50%;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(180, 180, 180, 0.1);
}



/*Mobile Right Side Bar*/
#rightSidebar {
  transition: all 0.4s ease;
  overflow-y: hidden;
}
.main-expanded {
  width: 100% !important;
  transition: all 0.4s ease;
}
#toggleSidebarBtn {
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: white !important;
}
#toggleSidebarBtn i {
  font-size: 1.2rem;
}
#overlay {
  display: none;
}

@media (max-width: 767px) {
  .main-content {
  flex: 0 0 100%;
    max-width: 100%;
  
}
.container-fluid{
  padding:15px 0 !important;
}
  #rightSidebar {
    position: fixed !important;
    top: 175px; /* below sticky header + banner */
    right: -100%;
    width: 300px;
    height: calc(100vh - 175px);
    background: #fff;
    z-index: 1040;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.4s ease;
  }
  #rightSidebar.active {
    right: 0;
  }
  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1039;
    display: none;
  }

  #rightSidebar.slide-in {
    right: 0;
    transition: right 0.4s ease;
  }
  #overlay.active {
    display: block;
  }
}

.webinar-scroll-mobile-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f8f9fa;
  z-index: 1038;
  border-top: 1px solid #ddd;
  padding: 0.75rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.webinar-scroll-mobile {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  flex: 1;
  scroll-behavior: smooth;
}
.webinar-scroll-mobile::-webkit-scrollbar {
  display: none;
}
.webinar-scroll-mobile .webinar-card {
  min-width: 45%;
  flex: 0 0 auto;
  background: #fff;
  border-radius: 6px;
  padding: 0.5rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.card-scrollbox {
  background-color: #fff;
  max-height: 80vh;
  overflow-y: auto;
  padding: 10px;
}

.webinar-card img {
  border-radius: 6px;
}
.sidebar-left {
  background-color: transparent;
  display: none !important;
  position: sticky;
  top: 175px;
  z-index: 1;
  align-self: flex-start;
}

@media (min-width: 768px) {
  .webinar-scroll-mobile-wrapper {
    display: none !important;
  }
  .sidebar-left {
    display: block !important;
  }
  
}

.card {
  border: 1px solid var(--form-border-light) !important;
  border-radius: 10px;
}

:root {
  --form-border-light: #ccc;
  --form-border-focus: #222;
  --form-bg-light: #fff;
  --form-text-light: #222;
}

.form-control,
.form-select {
  border: 1px solid var(--form-border-light) !important;
  background-color: var(--form-bg-light);
  color: var(--form-text-light);
  box-shadow: none !important;
  transition: border-color 0.2s ease;
  width:100% !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--form-border-focus) !important;
  outline: none !important;
}

.form-label {
  font-weight: 500;
}

.form-check-label {
  margin-left: 0.25rem;
  font-weight: 400;
  font-size: small;
}

a.forgot-password {
  color: #0d6efd;
  text-decoration: none;
  margin-left: auto;
}

#categorySelect {
  width: 100%;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border: 2px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.375rem;
  background-color: #fff;
  appearance: none;
  box-sizing: border-box;
  margin-bottom: 5px;
}

#rightSidebar #registerForm {
  height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.25rem;
}
#rightSidebar .card-body {
  padding: 0;
}
#rightSidebar #loginForm,
#rightSidebar #registerForm {
  padding: 1.25rem;
}
.main_content.active {
  display: block;
}
.btn .btn-primary .w100 {
  background-color: #036 !important;
  border-color: #036 !important;
}
.author-img {
  width: 75px;
  min-width: 75px;
  height: 75px;
  border-radius: 50%;
}
.author-sec {
  column-gap: 15px;
}
.webinar-list-sec small.text-muted {
  font-size: 14px;
}
.main_content .js-video-player_new {
  max-width: 100% !important;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  background-color: #000;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

#webinarContainer {
  border: 2px solid rgba(0, 0, 0, 0.125);
  border-radius: 6px;
}

.share-icon {
  column-gap: 5px;
}

.webinar-label {
  position: sticky;
  top: 0;
  background: #003366;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 0.5rem;
  z-index: 2;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}

.container-fluid{
  padding: 50px;
  background-color: #fcfcfc !important;
}

.date-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

h6{
  color:#3b3b3b;
}
p{
  color:#222;
}
.btn .btn-primary .w-100 :hover{
  background-color: rgb(0, 66, 131);
  transform: scale(1.02) !important;
  transition: all 0.3s ease !important;
}

.btn-outline-warning {
  color: #036 !important;
    border-color: #036 !important;
}

.btn-outline-warning:hover {
  background-image: linear-gradient(to right, #003366, #336699) !important;
  color: white !important;
}

.ms-5 {
    margin-left: 0rem !important
}

.pt-5 {
  padding-top: 0rem !important;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #222;
  color: white;
  border: none;
  border-radius: 50%;
  /* padding: 20px; */
  font-size: 42px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 80px;
  height: 80px;
}

.play-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

#loginPopup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  z-index: 1050;
  display: none;
  max-width: 90%;
  width: 400px;
  text-align: center;
}

#loginOverlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1040;
  display: none;
}


  .initial-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #007bff; /* Fallback color */
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    text-transform: uppercase;
    user-select: none;
  }

  /* Optional: randomize bg colors */
  .initial-avatar.bg-1 { background-color: #6c5ce7; }
  .initial-avatar.bg-2 { background-color: #00b894; }
  .initial-avatar.bg-3 { background-color: #fd79a8; }
  .initial-avatar.bg-4 { background-color: #e17055; }
  .initial-avatar.bg-5 { background-color: #0984e3; }

  
@media (min-width: 992px) {
        
        #rightSidebar {
          overflow: visible !important;
          position: sticky;
          top: 175px; /* below sticky header + banner */
        }

        .speaker-float-img {
          left: -125px !important;
          z-index: 10;
          width: 100px;
          height: 100px;
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }
       

        .position-relative.overflow-visible {
          overflow: visible !important;
        }

        .p-2 {
    padding: 1.5rem !important;
}
      }


/*Review */
/* === Review Container === */
.review-section {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
}

/* === Form Headings === */
.review-section h5,
.review-section h6 {
  font-weight: 600;
  margin-bottom: 1rem;
}

/* === Star Rating === */
.review-section .star-rating i {
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
  margin-right: 4px;
  transition: color 0.2s;
}

.review-section .star-rating i.active,
.review-section .star-rating i:hover,
.review-section .star-rating i.hovered {
  color: #f5a623;
}

/* === Textarea Styling === */
.review-section textarea {
  width: 100%;
  min-height: 100px;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 1rem;
  font-size: 1rem;
  resize: vertical;
}

/* === Submit Button === */
.review-section button {
  background-color: #006aff;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 5px;
  font-weight: 500;
  transition: background 0.2s;
}

.review-section button:hover {
  background-color: #0054c2;
}

/* === Previous Review Item === */
.review-section .review-item {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 16px;
}

.review-section .review-item .reviewer {
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.review-section .review-item .reviewer img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 10px;
}

.review-section .review-item .stars {
  color: #f5a623;
  margin-left: auto;
}

.review-section .review-item small {
  color: #666;
  font-size: 0.9rem;
}


      .linkedin-btn{
         position: absolute;
                  left: 50%;
                  bottom: -20px;
                  transform: translateX(-50%);
                  background: white;
                  border-radius: 8px;
                  padding: 6px 10px;
                  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
      }

      .linkedin-descp{
         color: #222;
                  font-size: 14px;
                  font-weight: 400;
                  line-height: 1.4;
                  margin: 0 10px 30px;
      }
.linkdenin_register-wrapper{
      position: relative;
                background-color: #f79433;
                padding: 5px;
                border-radius: 12px;
                text-align: center;
                width: fit-content;
                margin: 0 auto;
                font-family: system-ui, sans-serif;
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
                }

                #toggleEditorBtn{
                  background: none; border: none; padding: 0; font-size: 1.1rem;
                }

                 .editor-wrapper {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.4s ease;
  }

  .editor-wrapper.active {
    max-height: 600px; /* adjust as needed */
    opacity: 1;
  }

img.scaled-image {
  border: none !important;
  margin: 0 !important;
}
a:hover {
  color: #0056b3;
  text-decoration: none !important;
}