main,
footer {
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 0 20px;
}

main {
  margin-top: 60px;
}

.nav-item.dropdown {
  display: block !important;
  /* Always show */
}

/* common header */
/* Task #37414 - Rebuild MAP activity on my.vyvosocialfi.com */
@media (max-width: 320px) {
  .navLogo {
    width: 100px;
  }
}

/* navbar */
.navbar {
  background-color: white;
  height: 80px;
}

.navbar-nav.hasline .nav-item {
  position: relative;
  padding: 0 10px;
}

.navbar-nav.hasline .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 40%;
  height: 25%;
  width: 2px;
  background-color: #000000;
}

.navbar-nav.hasline .nav-item a.nav-link {
  color: #000000;
  font-weight: 300;
}

.nav-item.active a.nav-link {
  /* color: #324A6D !important;
  text-decoration: underline #ff0066 2px; */
  color: #324A6D !important;
  text-decoration: underline !important;
  /* Ensure underline is applied */
  text-decoration-color: #ff0066 !important;
  /* Explicitly set the color */
  text-decoration-thickness: 2px !important;
  /* Adjust the thickness */
  text-underline-offset: 2px !important;
  /* Add an offset for better appearance */
  -webkit-text-decoration-color: #ff0066;
  /* Safari-specific text-decoration color */
  -webkit-text-decoration: underline;
  /* Safari-specific text-decoration fallback */
}

a.nav-link.haslink:hover {
  text-decoration: underline 2px #ff0066;
}

.nav-separator {
  border-right: 2px solid #000;
  padding: 0 3px;
}

.navbar-toggler {
  padding: 3px;
}

.dropdown-menu {
  transition: opacity 0.3s ease, visibility 0.3s ease;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 1050;
}

.dropdown.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-menu.dropdown-menu-right {
  border-radius: 0 0 20px 0;
}

.dropdown-item:focus,
a.dropdown-item:hover {
  text-decoration: underline 2px #FF0066;
  background-color: #fff;
}

a.nav-link i,
a.nav-link img.hasImage {
  background-color: #262626;
  border-radius: 50%;
  color: #EEEFF0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 7px;
}

.navbar-toggler-icons i {
  background-color: #262626;
  border-radius: 5px;
  padding: 3px 5px;
  color: white;
}

.navbar-collapse.show {
  /* position: absolute; */
  /* top: 100%; */
  z-index: 100;
  background-color: #fff;
  width: 100%;
  /* left: 0px; */
  border-bottom-right-radius: 15%;
}

/* Adds margin for the dropdown section (C) in the row */
.navbar-nav.flex-row .nav-item {
  margin-left: 3px;
}

/* Custom styling to make the dropdown appear outside navbar */
.dropdown-menu.custom-dropdown {
  position: absolute;
  top: 100%;
  z-index: 1000;
}

.li-has-menu,
.active-dropdown-item {
  /* text-decoration: underline 2px #FF0066; */
  text-decoration: underline;
  text-decoration-thickness: 2px;
  /* Adjust thickness */
  text-decoration-color: #FF0066;
  /* Specify color */
  text-underline-offset: 2px;
  /* Add offset for clarity */
}

/* Ensures the dropdown is outside the navbar on small screens */
@media (max-width: 767px) {
  main {
    margin-top: 20px;
  }

  .navbar {
    height: auto;
    justify-content: end;
  }

  .dropdown-menu.custom-dropdown {
    position: relative;
    left: auto;
    right: 0;
  }

  .dropdown-menu.custom-dropdown.language-menu {
    position: absolute;
  }

  .navbar-nav.hasline .nav-item:not(:last-child)::after {
    width: 0px;
  }

  .navbar-nav.hasline .nav-item {
    padding: 3px 10px;
  }

  .language-dropdown-menu-list {
    position: fixed;
    top: 3px;
    right: 18px;
    z-index: 1050;
  }

  li.nav-item.dropdown.li-has-menu.show {
    text-decoration: none;
  }
}

/* navbar */

/* common header */

/* common language - dropdown */
.main-dd-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
}

.main-dd-menu-item {
  position: relative;
  background-color: black;
  border-radius: 50%;
  margin: 1px;
}

.main-dd-menu-item a {
  color: #fff;
  text-decoration: none;
  padding: 8px 12px;
  display: block;
}

.main-dd-dropdown-toggle i {
  font-size: 20px;
}

.main-dd-dropdown-toggle-img {
  padding: 7px 3px !important;
}

.main-dd-menu-item:hover {
  background-color: #7b838c;
}

.main-dd-dropdown-menu {
  list-style: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #ffffff;
  padding: 0;
  margin: 0;
  display: none;
  /* min-width: 160px; */
  opacity: 0;
  transition: opacity 0.3s ease;
  width: fit-content;
  text-wrap: nowrap;
  z-index: 1;
}

.main-dd-dropdown-menu .main-dd-dropdown-item a {
  color: #000000;
  text-decoration: none;
  padding: 10px;
  display: block;
  background-color: #ffffff;
  text-align: left;
}

.main-dd-dropdown-menu .main-dd-dropdown-item a:hover {
  background-color: #f6f5fa;
}

.main-dd-dropdown:hover .main-dd-dropdown-menu {
  display: block;
  opacity: 1;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 0.5rem 0;
  font-size: 1rem;
  color: #212529;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* .main-dd-menu {
    flex-direction: column;
  } */

  .main-dd-menu-item {
    width: 100%;
  }

  /* .main-dd-dropdown-menu {
    position: static;
    opacity: 1;
    display: none;
    transition: none;
  } */

  .main-dd-dropdown:hover .main-dd-dropdown-menu {
    text-align: left;
    /* left: 0; */
    right: -35px;
  }
}


/* common language - dropdown */

.app-download {
  font-size: 21px;
  font-weight: 600;
  line-height: 25px;
  border: 8px solid #9e9e9e57;
  display: inline-block;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.23) 0px 0px 10px 0px
}

.app-download:hover {
  border: 8px solid #fcd8e6;
}

.common-seperator {
  border-top: 5px solid #F4F4F4;
}

.toolSetupListRow {
  word-wrap: break-word;
}

.noConsoleUserDiv {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  width: 98%;
  margin: 0 auto;
  font-size: 20px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

/* invcode tabs */
.invcode-custom-tabs {
  display: flex;
  justify-content: center;
  border-radius: 50px;
  margin: 0 auto;
  box-shadow: rgba(0, 0, 0, 0.31) 0px -1px 0px 0px;
  justify-content: space-between;
  border-top: 0px solid #DBDBDB;
  border-right: 0px solid #DBDBDB;
  border-bottom: 2px solid #DBDBDB;
  border-left: 0px solid #DBDBDB;
  background-color: #EFF2F9;
  box-shadow: rgba(0, 0, 0, 0.17) 0px 0px 10px 0px inset;
}


.invcode-custom-tab {
  padding: 8px 3px;
  cursor: pointer;
  text-align: center;
  font-weight: 600;
  border-radius: 50px;
  align-content: center;
  font-size: 15px;
  word-break: break-all;
}

.invcode-custom-tab.active {
  color: #fff;
  background-color: #464E59;
  min-height: 55px;
  box-shadow: rgba(0, 0, 0, 0.5) 0px 0px 10px 0px inset;
}

.invcode-custom-hubs{
    color: black;
  background-color: #e3e3e3;
  border: 1px solid grey
  
  
}

.invcode-custom-hubs.active{
    color: black;
  background-color: #fff;
  border: 1px solid #ff0066
  
  
}
.app-box-content a:hover{
background-color: #7B838C;
}

.tab-content {
  margin-top: 20px;
}

.invcode-tab-pane {
  display: none;
}

.invcode-tab-pane.show {
  display: block;
}

.inv-count {
  font-size: 16px;
  color: #FF0066;
  font-weight: 600;
}

/* invcode tabs */

/* home page */
.home-top-left-box {
  background-color: #E5E9F2;
  border-radius: 20px;
  padding: 20px;
  align-content: center;
  margin: 0 auto;
  padding: 55px 22px 35px 22px;
  max-width: 90%;
  word-break: break-word;
}

.home-bottom-box {
  margin: -55px 0 0 0;
}

/* Sezione titolo + linea magenta: stessa altezza in tutte e 3 le card per allineamento */
.home-bottom-box .home-card-title-section {
  display: block;
  width: 100%;
  box-sizing: border-box;
  /* 48px header + 10px margin-top + 1px hr + 15px margin-bottom = 74px */
  min-height: 74px;
  height: 74px;
}
/* Allineamento titoli e linea magenta nelle prime 3 card della homepage (tutti i viewport) */
.home-bottom-box .home-card-title-section .hub-console-header {
  min-height: 48px !important;
  height: 48px !important;
  box-sizing: border-box;
}
.home-bottom-box .home-card-title-section .home-card-magenta-hr {
  margin: 10px 0 15px 0 !important;
  flex-shrink: 0;
}

/* Padding uniforme 32px per le prime 5 card della homepage (riga 1 e riga 2) */
.home-bottom-box .home-bottom-left-box.dashboard-card-modern,
.home-bottom-box .dashboard-card-modern,
.home-cards-second-row .dashboard-card-modern {
  padding: 32px !important;
}

.home-bottom-left-box,
.home-bottom-right-box {
  text-align: center;
  align-content: start;
}

.sub-title-text {
  font-size: 25px;
  font-weight: 600;
  line-height: 41px;
  text-decoration: none solid rgb(28, 31, 38);
  text-align: center;
  word-spacing: 0px;
  color: #1C1F26;
}

/* Linear - VITA-17 - section in Hub Console Dashboard */
.sub-title-text-lite {
  font-size: 18px;
  font-weight: 600;
  line-height: 31px;
  text-decoration: none solid rgb(28, 31, 38);
  text-align: center;
  word-spacing: 0px;
  color: #1C1F26;
}

.sub-title-value,
.sub-title-value-1 {
  font-size: 20px;
  line-height: 40px;
  text-decoration: none solid rgb(28, 31, 38);
  text-align: center;
  word-spacing: 0px;
  color: #1C1F26;
}

.sub-title-value {
  background-color: #F3F3F3;
  border-radius: 45px;
  max-width: 60%;
  margin: 0 auto;
  color: #FF0066;
}

.info-icon {
  /* display: inline-block; */
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid grey;
  color: grey;
  font-size: 12px;
  text-align: center;
  line-height: 15px;
  cursor: pointer;
  float: right;
  margin-top: 10px;
}

.okinawaBannerImg {
  width: 100%;
  height: auto;
}

.banner-button {
  padding: 3%;
  border: 2px solid rgb(255, 0, 102);
  border-radius: 30px;
  font-weight: 600;
}

/* Task #37414 - JSF - Rebuild MAP activity on my.vyvosocialfi.com */
.hp-conn-pg-link a,
.hp-conn-pg-link a:hover {
  color: rgb(255, 0, 102);
  text-decoration: none;
}
.hp-conn-pg-link-arrow {
  display: inline-block;
  margin-left: 0.25em;
  font-size: 0.9em;
}

/* home page */

/* my-invitation page */
.invitation-top-left-box,

.connection-top-box,
.reward-top-left-box,
.tool-top-left-box {
  background-color: #E5E9F2;
  border-radius: 20px;
  padding: 20px;
  align-content: center;
}

.invitation-top-right-box,
.reward-top-right-box,
.tool-top-right-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 25px;
}

.invitation-top-left-box img {
  height: 125px;
  width: 125px;
}

.invitation-title,
.profile-title,
.home-title {
  font-size: 40px;
  font-weight: 600;
  line-height: 41px;
  text-decoration: none solid rgb(28, 31, 38);
  word-spacing: 0px;
  color: #1C1F26;
  word-break: break-word;
  padding-left: 12px;  /* più spazio dal bordo magenta a sinistra */
}

.invitation-bottom-left-info-box {
  display: flex;
  /* padding: 20px; */
  align-items: center;
}

.invitation-bottom-left-info-box .info-box-icon {
  border-radius: 20px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.28) 0px 0px 10px 0px;
  min-width: 125px;
  min-height: 125px;
  align-content: center;
}

.info-box-icon .hub-name {
  font-size: 22px;
  font-weight: 600;
  line-height: 33px;
  color: #1C1F26;
}

.invitation-bottom-left-info-box .info-box-content {
  padding: 0 15px;
  width: 100%;
}

.info-box-text {
  font-size: 25px;
  line-height: 25px;
  text-decoration: none solid rgb(28, 31, 38);
  word-spacing: 0px;
  color: #1C1F26;
}

.info-box-code {
  font-size: 25px;
  font-weight: 600;
  line-height: 30px;
  text-decoration: none solid rgb(255, 0, 102);
  word-spacing: 0px;
  color: #FF0066;
}

.info-box-content a img,
.info-box-content .invcode-open-link {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F4F4F4;
  text-align: center;
  line-height: 35px;
  padding: 5px;
}

.info-box-content .invcode-open-link {
  color: #1c1c1c;
  position: absolute;
}

.info-box-content a img:hover,
.info-box-content .invcode-open-link:hover {
  background-color: #7B838C;
}

.invcode-sticky-box {
  height: 550px;
  overflow-y: scroll;
  scrollbar-width: none;
}

/* .modal {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 500px;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 25px;
  outline: 0;
  top: 15%;
  margin: 0 auto;
  padding: 10px;
} */

.modal {
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  /* Ensure the modal container itself is scrollable */
  z-index: 1000;
  /* To ensure the modal appears above other content */
  padding: 5px;
}

.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 500px;
  max-height: 90vh;
  /* Prevent content from exceeding viewport height */
  overflow-y: auto;
  /* Enable vertical scrolling within the modal content */
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 25px;
  outline: 0;
  margin: 20% auto;
  /* Center the modal vertically */
  padding: 10px;
}

#makeScrollDiv {
  max-height: 90vh;
  /* Set a maximum height */
  overflow-y: auto;
  /* Enable vertical scrolling */
}

/* Styling the scrollbar for WebKit browsers (Chrome, Safari, etc.) */
#makeScrollDiv::-webkit-scrollbar {
  width: 1px;
  /* Width of the scrollbar */
}

#makeScrollDiv::-webkit-scrollbar-track {
  background: #f1f1f1;
  /* Background of the scrollbar track */
  border-radius: 10px;
  /* Rounded track */
}

#makeScrollDiv::-webkit-scrollbar-thumb {
  background-color: #888;
  /* Color of the scrollbar thumb */
  border-radius: 10px;
  /* Rounded thumb */
  border: 2px solid #f1f1f1;
  /* Add padding between thumb and track */
}

#makeScrollDiv::-webkit-scrollbar-thumb:hover {
  background-color: #555;
  /* Darker on hover */
}

/* Firefox specific scrollbar styling */
#makeScrollDiv {
  scrollbar-width: none;
  /* Thin scrollbar for Firefox */
  /* scrollbar-color: #888 #f1f1f1; */
  /* Thumb color and track color */
}

@media (min-width: 768px) {
  .fit-content-md-lg {
    white-space: nowrap;
    min-width: fit-content;
    margin: 0 auto;
    top: 100px;
  }
}

.invcode-modal-submit-button {
  font-size: 21px;
  font-weight: 600;
  line-height: 25px;
  color: #1C1F26;
  border: 8px solid #9e9e9e57;
  padding: 15px 25px 15px 25px;
  display: inline-block;
  border-radius: 25px;
  background-color: #fff !important;
  box-shadow: rgba(0, 0, 0, 0.23) 0px 0px 10px 0px
}

.invcode-modal-submit-button:hover {
  color: #7B838C;
  border: 8px solid #fcd8e6;
}

.invcode-open-link {
  font-size: 28px;
  color: #FF0066;
}
/* my-invitation page */

/* my-profile page */
.profile-top-left-box {
  background-color: #E5E9F2;
  border-radius: 20px;
  padding: 20px;

}

.profilebox {
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.qrimage {
  position: absolute;
  bottom: 10px;
  right: 10px
}



.emailBadge {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 23px;
  width: 220px;

  text-align: end;

}


.image-container {
  cursor: pointer
}

image-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;

}

.popup-image {
  position: fixed;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 9);
  height: 100%;
  width: 100%;
  z-index: 1200;
  display: none;

}

.popup-image span {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 60px;
  font-weight: bolder;
  color: #fff;
  cursor: pointer;
  z-index: 1200
}

.popup-image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  object-fit: cover;
}

@media (max-width:768px) {
  .popup-image img {
    width: 95%;
  }
}

@media (min-width:1200px) {
  .badgeBox {
    gap: 130px;

  }
}

@media (max-width:576px) {
  .badgeBox {
    gap: 35px;

  }

  .border-box-widget {
    width: fit-content;
  }
}

.profile-top-right-box {
  border-radius: 20px;
}

.profile-title-desc {
  font-size: 30px;
  line-height: 30px;
  color: #1C1F26;
}

.profile-info-card {
  border-radius: 20px;
}

.banner-icon {
  top: 50px;
  right: 5px
}

.profile-info-card-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #F4F4F4;
  text-align: center;
  line-height: 40px;
  font-size: 25px;
  color: #94D6D5;
  align-content: center;
}

.profile-user-image {
  font-size: 20px;
  background-color: #fff;
  padding: 5px 8px;
  margin: 0px 0 0 -20px;
  border-radius: 0 15px 15px 0px;
}

.profile-user-accepted {
  border: 3px solid #28a745;
  border-left-width: 0px;
}

.profile-user-founder {
  border: 3px solid #daa520 !important;
  border-left-width: 0px !important;
}

.profile-user-image img {
  max-width: 80px;
  border-radius: 100%;
}

.profile-user-icon {
  font-size: 50px;
  color: #94D6D5;
}

.profile-preview-container {
  width: 40px;
  height: 40px;
  margin-left: 10px;
}

.profile-preview-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-file-label {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#imagePreview {
  max-height: 360px;
  max-width: 360px;
  align-content: center;
  margin: 0 auto;
  border-radius: 20px;
}

#imagePreview img {
  padding: 5px;
  border-radius: 20px;
  max-height: 80%;
  max-width: 80%;
}

.statusType-missing {
  border: 3px solid #e5e7f3;
}

.statusType-pending {
  border: 3px solid orange;
}

.statusType-rejected {
  border: 3px solid red;
}

.statusType-accepted {
  border: 3px solid green;
}


.profile-action-button {
  cursor: pointer;
}

.profile-action-button i {
  padding: 5px;
  color: grey;
  font-size: 20px;
}

.profile-action-button.view-profile-img i {
  color: green;
}

.profile-action-button.del-profile-img i {
  color: red;
}

/* image upload part starts */
.profile-image-popup {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* background-color: rgba(0, 0, 0, 0.5); */
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-image-popup-content {
  background-color: #fff;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 500px;
  box-sizing: border-box;
  text-align: center;
}

.profile-image-crop-container {
  margin: 20px 0;
  max-width: 100%;
}

#profile-image-crop-btn,
#profile-image-cancel-btn {
  margin: 5px;
  padding: 10px 20px;
  border: none;
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 5px;
}

#profile-image-crop-btn:hover,
#profile-image-cancel-btn:hover {
  background-color: #45a049;
}

#container-wrapper {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 400px;
  position: relative;
  overflow: hidden;
}

#image-to-crop {
  max-width: 100%;
  height: auto;
}

#cropped-result {
  margin-top: 20px;
  max-width: 100%;
  width: 400px;
  height: 400px;
  object-fit: cover;
}

/* Circular viewport in the square cropper */
.cropper-view-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 99999px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
}

.cropper-view-box {
  box-shadow: none !important;
}

@media (max-width: 768px) {
  .profile-image-popup-content {
    width: 95%;
  }

  button {
    padding: 8px 16px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .profile-image-popup-content {
    width: 100%;
    padding: 15px;
  }

  #container-wrapper {
    max-height: 250px;
  }

  button {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}

/* image upload part ends */

/* Task #36804 - Integration Activity for Co-owner Access to the Back Office */
/* Task #37044 - JSF - My Profile Section - Add Co-Owner feature */
.pf-pg-nav-tabs {
  cursor: pointer;
  flex-flow: nowrap;
  overflow-x: scroll;
  white-space: nowrap;
  scrollbar-width: none;
}

a.nav-link.pf-pg-nav-tab {
  border: 1px solid #e5e7f3;
  border-bottom: none;
  margin: 1px;
  color: #000;
  border-radius: 25px 25px 0px 0px;
}

a.nav-link.pf-pg-nav-tab i {
  color: #94D6D5;
  background-color: #fff;
}

a.nav-link.pf-pg-nav-tab.active {
  color: #FF0066 !important;
}

.pf-pg-name-txt {
  top: 50%;
  position: absolute;
}
/* Task #37044 - JSF - My Profile Section - Add Co-Owner feature => update on DEC 18 24 */
#co_submitButton {
  color: #1C1F26;
}

input#co_email {
  text-transform: lowercase;
}
/* my-profile page */

/* my-connections page */
.connection-title,
.reward-title,
.tool-title {
  font-size: 15px;
  letter-spacing: 7px;
  line-height: 30px;
  text-decoration: none solid rgb(255, 0, 102);
  word-spacing: 0px;
  color: #FF0066;
}

.connection-title-desc,
.reward-title-desc {
  font-size: 30px;
  font-weight: 600;
  line-height: 40px;
  text-decoration: none solid rgb(28, 31, 38);
  word-spacing: 0px;
  color: #1C1F26;
}

.connection-top-box {
  text-align: center;
}

.home-bottom-left-box,
.home-bottom-right-box,
.connection-bottom-box,
.reward-bottom-box,
.invitation-bottom-box,
.invitation-bottom-left-box,
.invitation-bottom-right-box,
.reward-bottom-left-box,
.reward-bottom-middle-box,
.reward-bottom-right-box,
.pf-pg-add-form-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
}

table.rank-history-table th,
table.rank-history-table td {
  border-top: 0px;
  border-bottom: 0px;
  border-left: 0px;
  text-align: center;
  padding: 10px 0;
}

table.rank-history-table th:last-child,
table.rank-history-table td:last-child {
  border-right: 0px;
}

table.rank-history-table thead {
  text-align-last: center;
  white-space: nowrap;
  font-size: 16px;
  line-height: 20px;
  height: 50px;
}

table.rank-history-table thead td {
  font-size: 15px;
  color: #262626;
  font-weight: 600;
  align-content: center;
  border: 1px solid #fff;
  background-color: #EFF2F9;
}

.rank-history-table thead td:first-child {
  border-radius: 25px 0px 0px 25px;
}

.rank-history-table thead td:last-child {
  border-radius: 0px 25px 25px 0px;
}

table.rank-history-table tbody td {
  font-size: 13px;
}

table.rank-history-table {
  width: 100%;
}

/* Responsive  & Scrollbar */
@media (max-width: 767px) {
  table.reward-table {
    overflow-x: scroll;
    display: block;
  }

  table.rank-history-table::-webkit-scrollbar,
  .invcode-sent-list::-webkit-scrollbar {
    width: 1px;
    /* Adjust scrollbar width as needed */
  }

  table.rank-history-table::-webkit-scrollbar-track,
  .invcode-sent-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Track color */
  }

  table.rank-history-table::-webkit-scrollbar-thumb,
  .invcode-sent-list::-webkit-scrollbar-thumb {
    background: #EFF2F9;
    /* Thumb color */
    border-radius: 5px;
    /* Rounded corners for the thumb */
  }

  table.rank-history-table::-webkit-scrollbar-thumb:hover,
  .invcode-sent-list::-webkit-scrollbar-thumb:hover {
    background: #EFF2F9;
    /* Hover color */
  }

  .profile-user-image {
    font-size: 20px;
    background-color: #fff;
    padding: 5px 10px;
    /* margin: 0px 0 0 -20px; */
    border-radius: 15px;
  }

  .profile-user-image img {
    margin-left: -10px;
  }
}

@media (max-width: 375px) {
  table.connection-table {
    overflow-x: scroll;
    display: block;
  }
}

#filterHubDropdown,
#filterEmail,
.custom-select {
  box-shadow: inset 0 0 5px 2px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
}

#searchButton {
  background-color: #FF0066;
  border: none;
  border-radius: 20px;
}

/* my-connections page */

/* my-reward page */
.reward-title {
  text-align: left;
}

.reward-norank {
  top: 35%;
  position: relative;
  font-size: 30px;
  font-weight: 600;
  color: #FF0066;
}

.reward-rank {
  font-size: 30px;
  font-weight: 600;
  line-height: 33px;
  text-decoration: none solid rgb(28, 31, 38);
  text-align: left;
  word-spacing: 0px;
  color: #1C1F26;
}

.rbox-info-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 33px;
  text-decoration: none solid rgb(255, 0, 102);
  text-align: left;
  word-spacing: 0px;
  color: #FF0066;
}

.rbox-info-desc {
  font-size: 16px;
  font-weight: 600;
  line-height: 33px;
  text-decoration: none solid rgb(28, 31, 38);
  text-align: left;
  word-spacing: 0px;
  color: #1C1F26;
}

.reward-top-right-box img {
  height: 150px;
  width: 150px;
}

.upcoming-rank-div thead{
  background-color: #FF0066;
  color: #fff;
}

.upcoming-rank-div {
  border-collapse: separate; 
  border-spacing: 0; 
  border-radius: 25px; 
  overflow: hidden; 
}
/* my-reward page */

/* volumes page => Task #35906 - JSF - "Volumes" Page */
.reward-main-tabDiv,
.reward-sub-tabDiv,
.reward-sub-sub-tab {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  background-color: #EFF2F9;
  box-shadow: rgba(0, 0, 0, 0.17) 0px 0px 10px 0px inset;
}

.reward-main-tab.active,
.reward-sub-tab.active,
.reward-sub-sub-tab.active {
  background-color: #ffffff;
}

.reward-main-tab a {
  color: #000;
  font-weight: 600;
}

/* .volumeTab-sub-tab-title {
  font-weight: 600;
}

.volumeTab-sub-tab-content-title {
  text-align: center;
  font-weight: bold;
  color: #000;
}

.volumeTab-sub-tab-table {
  width: 100%;
  text-align: left;
  font-size: 16px;
  color: #000;
}

.volumeTab-tab-icon {
  color: #fff;
  background-color: #a9a9a9;
  width: 35px;
  float: right;
  border-radius: 0px 25px 25px 0px;
  height: 40px;
  align-content: center;
} */

.community-tab-icon {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 2px solid darkgrey;
  color: grey !important;
  font-size: 12px !important;
  text-align: center !important;
  line-height: 12px !important;
  cursor: pointer;
  display: inline-block;
}

.community-content-container {
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.31);
  padding: 0 5px;
  background-color: #fff;
  border-radius: 10px;
}

.community-tab-border-icon {
  font-size: 20px;
  color: #fff;
  background-color: #a9a9a9;
  width: 40px;
  float: right;
  margin: 0 -8px -8px 0;
  border-radius: 20px 0 25px 0;
  height: 30px;
  font-weight: 600;
}

.filerVolumeButton {
  background-color: #F3F3F3;
  color: #FF0066;
  font-size: 16px;
  font-weight: 600;
}

.filerVolumeButton:hover {
  color: #fff;
  background-color: #a9a9a9;
}

select.periodList {
  height: 40px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.31) inset;
  border-radius: 34px 34px 34px 34px;
}

/* .volumeCommunityDt,
.volumeConnectionDt {
  text-wrap: nowrap;
} */

/* .volumeConnectionDtFilter input[type=date],
.volumeCommunityDtFilter input[type=date] {
  height: 40px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.31) inset;
  border-radius: 34px 34px 34px 34px;
  text-align: center;
} */

/* .volumeCommunityDt tbody tr td:nth-child(2),
.volumeConnectionDt.current tbody tr td:nth-child(2),
.volumeConnectionDt.history tbody tr td:nth-child(3) {
  text-align: right;
}

.volumeTab-tabs {
  display: flex;
  flex-direction: column;
}

.volumeTab-tab-links,
.volumeTab-sub-tab-links {
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.volumeTab-tab-links,
.volumeTab-sub-tab-links,
.volumeTab-nested-tab-links,
.volumeTab-nested-sub-tab-links {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 10px;
  border-radius: 25px;
}

.volumeTab-tab-link,
.volumeTab-sub-tab-link,
.volumeTab-nested-tab-link,
.volumeTab-nested-sub-tab-link,
.gpuTab-Label {
  flex: 1;
  background-color: #e3e3e3;
  border-radius: 25px;
  cursor: pointer;
  text-align: center;
  margin: 0 3px;
  border: none;
  box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.31);
  border: 1px solid #a9a9a9;
  align-content: center;
}

.volumeTab-tab-link,
.volumeTab-nested-tab-link {
  font-weight: 600;
} */
.nav-tabs .nav-link.active {
    border: 1px solid #ff0066;
    background-color: #fff; /* Colore di sfondo per il tab attivo */
    color: black; /* Colore del testo per il tab attivo */
    border-radius: 25px; /* Bordi arrotondati */
}

/* Stile per i tab inattivi */
.nav-tabs .nav-link {
    border: 1px solid grey;
    background-color: #e3e3e3; /* Colore di sfondo per i tab inattivi */
    color: #999; /* Colore del testo per i tab inattivi */
    border-radius: 25px; /* Bordi arrotondati */
    transition: background-color 0.3s ease; /* Transizione fluida */
}

.vvolumeTab-sub-tab-link:not(.active) span {
  color: #999; /* Colore desiderato per lo span non attivo */
}

.vvolumeTab-sub-tab-link:not(.active) .card-text {
  color: #999; /* Colore desiderato per lo span non attivo */
}

.vvolumeTab-nested-tab-link:not(.active) span {
  color: #999; /* Colore desiderato per lo span non attivo */
}

.vvolumeTab-sub-tab-link:not(.active) h5 {
  color: #999; /* Colore per gli h5 non attivi */
}

/* Seleziona gli h5 all'interno di .volumeTab-sub-tab-link con la classe "active" */
.vvolumeTab-sub-tab-link.active .h5 {
  color: #000; /* Colore per gli h5 attivi */
}

/* #communityResetButton0:hover,#connectionResetButton0:hover,#communityResetButton1:hover,#connectionResetButton1:hover,#communityResetButton2:hover,#connectionResetButton2:hover,#communityResetButton3:hover,#connectionResetButton3:hover{
    background-color:#999;
}

#communityFilterButton0:hover, #connectionFilterButton0:hover,#communityFilterButton1:hover, #connectionFilterButton1:hover,#communityFilterButton2:hover, #connectionFilterButton2:hover,#communityFilterButton3:hover, #connectionFilterButton3:hover{
    background-color:#184e77;
}


#connectionFilterButton0, #communityFilterButton0,#connectionFilterButton1, #communityFilterButton1,#connectionFilterButton2, #communityFilterButton2,#connectionFilterButton3, #communityFilterButton3{
    background-color:#8ecae6
} */

#filterRankHistory{
    padding: 5px 10px;
    background-color:#8ecae6;
    color:black;
        border-radius:25px
}

#filterRankHistory:hover{
    background-color:#184e77;
    color:black;
        border-radius:25px
}

#resetRankHistory{
    padding: 5px 10px;
    border-radius:25px;
    color:black;
        border-radius:25px
}



/* .volumeTab-tab-link.active,
.volumeTab-sub-tab-link.active,
.volumeTab-nested-tab-link.active,
.volumeTab-nested-sub-tab-link.active,
.gpuTab-Label.active {
  border: 1px solid #FF0066;
  background-color: #fff;
}*/

.volumeTab-tab,
.volumeTab-sub-tab,
.volumeTab-nested-tab,
.volumeTab-nested-sub-tab {
  display: none;
}

.volumeTab-tab.active,
.volumeTab-sub-tab.active,
.volumeTab-nested-tab.active,
.volumeTab-nested-sub-tab.active {
  display: block;
}

/* .volumeTab-sub-tab-content {
  background-color: #fff;
  padding: 15px;
  border-radius: 25px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
} */

/* .volumeTab-tab-link span,
.volumeTab-sub-tab-link span,
.volumeTab-nested-tab-link span {
  font-size: 18px;
  line-height: 40px;
  text-decoration: none solid rgb(28, 31, 38);
  text-align: center;
  word-spacing: 0px;
  color: #1C1F26;
} */

/* .volumeTab-sub-tab-img-container {
  width: 25%;
} */

@media (max-width: 767px) {

  /* .volumeTab-tab-link,
  .volumeTab-sub-tab-link,
  .volumeTab-nested-tab-link,
  .volumeTab-nested-sub-tab-link {
    flex: 1 1 100%;
  }

  .volumeTab-sub-tab-img-container {
    width: 50%;
  } */

  .summary-list {
    border: none !important;
    padding: 0px !important;
    border-radius: 0px !important;
  }
}

@media (max-width: 424px) {
  /* .volumeTab-sub-tab-img-container {
    width: 60%;
  } */
}

@media (max-width: 890px) {

  /* table.volumeCommunityDt,
  table.volumeConnectionDt, */
  table.gpuDt {
    overflow-x: scroll;
    display: block;
  }
}

/* .volumeTab-tab-link.active .volumeTab-tab-icon,
.volumeTab-sub-tab-link.active .community-tab-border-icon,
.volumeTab-sub-tab-link.active .volumeTab-tab-icon,
.volumeTab-nested-tab-link.active .volumeTab-tab-icon {
  color: #F3F3F3;
  background-color: #FF0066;
} */

.lastUpdate {
  font-size: 14px;
}

.summary-list {
  border: 2px solid #a9a9a9;
  padding: 20px;
  border-radius: 25px;
  margin: 0px 10px 0px 10px;
}

/* volumes page */

/* tool-setup page */
.tool-title-desc {
  font-size: 20px;
  line-height: 30px;
  text-decoration: none solid rgb(38, 38, 38);
  word-spacing: 0px;
  color: #262626;
}

.preview-title {
  font-size: 25px;
  font-weight: 600;
  line-height: 33px;
  text-decoration: none solid rgb(255, 0, 102);
  word-spacing: 0px;
  color: #FF0066;
}

.border-box-shadow {
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.23) 0px 0px 10px 0px;
}

.border-box {
  border-radius: 25px;
  border: solid 3px #f3f3f3;
}

.border-box-theme {
  border-radius: 25px;
  border: solid 3px #5a8eff;
}

.border-box-widget {
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.28) 0px 0px 10px 0px;
  align-content: center;
  min-width: 60px;
  min-height: 60px;
}

.border-box-widget img {
  width: 60px;
  padding: 5px;
}

.user-icon {
  color: #464E59;
  padding: 10px;
  background-color: #F4F4F4;
  border-radius: 50%;
  font-size: 25px;
}

.join-owner-info {
  word-break: break-all;
}

.a-rediect-button-div {
  background-color: #e5e9f2;
  padding: 5px 15px;
  border-radius: 15px;
  text-align: center;
}

.a-rediect-button {
  text-decoration: none;
  color: #ff0066;
  font-size: 16px;
  cursor: pointer;
  word-wrap: break-word;
}

.checkbox-table {
  padding: 0px 25px;
}

/* Spaziatura tra i blocchi nella pagina tool-setup */
#pf-tool-setup > .row.mt-3 {
  margin-bottom: 28px;
}
/* Spazio al centro tra tool-top-left-box e tool-top-right-box (quando affiancati) */
@media (min-width: 768px) {
  #pf-tool-setup > .row.mt-3 {
    column-gap: 24px;
  }
  /* Ridimensiona le colonne così restano sulla stessa riga con il gap */
  #pf-tool-setup > .row.mt-3 .col-12.col-md-6 {
    flex: 1 1 0;
    max-width: none;
    min-width: 0;
  }
}

/* Stesso spazio e ridimensionamento per la seconda riga (Profile Information + Social Media) */
@media (min-width: 768px) {
  #pf-tool-setup form .row.mt-3 {
    column-gap: 24px;
  }
  #pf-tool-setup form .row.mt-3 .col-12.col-md-6 {
    flex: 1 1 0;
    max-width: none;
    min-width: 0;
  }
}
#pf-tool-setup form .row.mt-3 {
  margin-bottom: 24px;
}
#pf-tool-setup .tool-top-left-box,
#pf-tool-setup .tool-top-right-box {
  margin-bottom: 0;
}
#pf-tool-setup .reward-bottom-left-box,
#pf-tool-setup .reward-bottom-right-box {
  margin-bottom: 20px;
}
/* Checkbox allineate a sinistra nei due blocchi della seconda riga */
#pf-tool-setup .reward-bottom-left-box .checkbox-table,
#pf-tool-setup .reward-bottom-right-box .checkbox-table {
  text-align: left;
}
#pf-tool-setup .reward-bottom-left-box .checkbox-table h4,
#pf-tool-setup .reward-bottom-right-box .checkbox-table h4 {
  text-align: left;
}
#pf-tool-setup .reward-bottom-left-box .toolSetupListRow,
#pf-tool-setup .reward-bottom-right-box .toolSetupListRow {
  justify-content: flex-start;
  text-align: left;
}
#pf-tool-setup .reward-bottom-left-box .custom-checkbox,
#pf-tool-setup .reward-bottom-right-box .custom-checkbox {
  text-align: left;
}
/* Stessa larghezza colonna checkbox in tutti i blocchi così le prime si allineano alle altre */
#pf-tool-setup .reward-bottom-left-box .toolSetupListRow .col-sm-3,
#pf-tool-setup .reward-bottom-right-box .toolSetupListRow .col-sm-3 {
  flex: 0 0 140px;
  max-width: 140px;
  min-width: 140px;
}
#pf-tool-setup .reward-bottom-left-box .toolSetupListRow .col-sm-9,
#pf-tool-setup .reward-bottom-right-box .toolSetupListRow .col-sm-9 {
  flex: 1 1 0;
  min-width: 0;
}
/* Nell'ultima card (destra) la prima textbox come le altre: stessa larghezza */
#pf-tool-setup .reward-bottom-right-box .toolSetupListRow .col-sm-9 input.form-control,
#pf-tool-setup .reward-bottom-right-box .toolSetupListRow .col-sm-9 .toolSetupInputBox {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
/* Prima riga con stesso spazio delle altre (dopo l'hr) */
#pf-tool-setup .reward-bottom-left-box .checkbox-table .toolSetupListRow:first-of-type,
#pf-tool-setup .reward-bottom-right-box .checkbox-table .toolSetupListRow:first-of-type {
  margin-top: 1rem;
}
/* Card sinistra (Profile Information): prima riga con stesso margine delle altre 2 (1rem) */
#pf-tool-setup .reward-bottom-left-box .checkbox-table:first-of-type .toolSetupListRow:first-of-type {
  margin-top: 1rem;
}
/* Social Media: prima riga (Facebook) con stesso margine delle altre 3 (1rem) */
#pf-tool-setup .reward-bottom-right-box .checkbox-table:first-of-type .toolSetupListRow:first-of-type {
  margin-top: 1rem;
}
#pf-tool-setup .checkbox-table {
  margin-bottom: 24px;
}
#pf-tool-setup .checkbox-table:last-child {
  margin-bottom: 0;
}
#pf-tool-setup .border-box-shadow {
  margin-bottom: 20px;
}
#pf-tool-setup .a-rediect-button-div {
  margin-top: 16px;
}
#pf-tool-setup .vCardbutttonDiv {
  margin-top: 28px;
  margin-bottom: 16px;
}

/* Quando i due div sono uno sotto l'altro (mobile), più spazio tra loro */
@media (max-width: 767.98px) {
  #pf-tool-setup .row .col-12.col-md-6.mt-3.mt-md-0 {
    margin-top: 28px !important;
  }
}

.custom-checkbox .custom-control-label::before {
  border-radius: 50%;
  /* Make it rounded */
  border-color: #ff0066;
  /* Set the border color to #ff0066 */
}

/* Custom styles for the tick mark when checkbox is checked */
.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
  content: '';
  /* No content for the tick mark */
  background-color: #ff0066;
  border-color: #ff0066;
}

.vCardbutttonDiv {
  background-color: #fff;
  border-radius: 40px;
  padding: 20px;
}

#submitVcardButton,
#profileSetupButton,
.rewardSetupButton,
#vscAddressFormSubmit,
#profileImgSubmit,
#co_submitButton {
  font-size: 21px;
  font-weight: 600;
  line-height: 25px;
  border: 8px solid #9e9e9e57;
  padding: 15px 25px 15px 25px;
  display: inline-flex;
  border-radius: 25px;
  box-shadow: rgba(0, 0, 0, 0.23) 0px 0px 10px 0px
}

#submitpremierWorkshopButton,
#premierWorkshopCloseLink {
  font-size: 20px;
  font-weight: 600;
  line-height: 10px;
  border: 5px solid #9e9e9e57;
  padding: 10px 20px;
  display: inline-flex;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.23) 0px 0px 10px 0px;
}

#submitpremierWorkshopButton:hover,
#premierWorkshopCloseLink:hover {
  border: 5px solid #fcd8e6;
}

#submitVcardButton:hover,
#vscAddressFormSubmit:hover,
#profileSetupButton:hover,
.rewardSetupButton:hover {
  border: 8px solid #fcd8e6;
}

#submitVcardButton #toolSetupButtonName,
#profileSetupButton,
.rewardSetupButton {
  color: #1C1F26 !important;
}


#submitVcardButton #toolSetupButtonName:hover,
#profileSetupButton:hover,
.rewardSetupButton:hover {
  color: #7B838C;
}

#frmVcard input[type="text"],
#eRequestModal input[type="text"],
#eRequestModal input[type="email"],
#eRequestModal select,
#vscAddressForm input[type="text"],
#premierWorkshopForm input[type="text"],
#premierWorkshopForm input[type="email"],
#profileSetupForm input[type="text"],
#profileSetupForm input[type="date"],
#profileSetupForm input[type="tel"],
#profileSetupForm select,
input#co_email {
  height: 40px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.31) inset;
  border-radius: 34px 34px 34px 34px;
}

/* tool-setup page */

/* terms page */
.terms-bottom-box {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 0 20px 20px 20px;
}

.terms-banner {
  text-align: center;
}

.terms-banner img {
  max-width: 90%;
  height: auto;
}

.terms-title {
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  text-decoration: none solid rgb(38, 38, 38);
  text-align: center;
  word-spacing: 0px;
  color: #262626;
  margin-top: 25px;
}

.card-header {
  border-bottom: 1px solid rgba(0, 0, 0, -0.875);
  background-color: #ffffff !important;
}

.terms-title-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  text-align: left;
  text-decoration: none solid #7b838c !important;
  word-spacing: 0px;
  color: #7B838C !important;
}

.active-panel-icon {
  color: #7b838c;
}

.terms-title-value {
  font-size: 16px;
  line-height: 24px;
  text-decoration: none solid rgb(38, 38, 38);
  word-spacing: 0px;
}

/* terms page */

/* Task #36718 - JSF Events Page */
.event-card {
  border-radius: 25px;

}

.event-title {
  box-shadow: rgba(0, 0, 0, 0.094) 0px 0px 10px 0px inset;
  padding: 2%;
  border-radius: 25px;
  text-align: center;
}

.eventDesc {
  font-size: 16px;
  color: #262626;
  text-align: justify;
}

.eventDesc1 {
  font-size: 18px;
  color: #FF0066;
}

.eventDesc2 {
  font-size: 16px;
  color: #262626;
}

.event-conv-button {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  border-radius: 10px;
  background-color: #FF0066;
  color: #ffffff;
  text-align: center;
}

.event-conv-button:hover {
  color: #ffffff;
  text-decoration: none;
}

.event-button-qualified {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  border-radius: 10px;
  border: 1px solid #FF0066;
  color: #FF0066;
  text-align: center;
}

.event-button-unqualified {
  color: #696969;
  border: 1px solid #696969;
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
  border-radius: 10px;
  text-align: center;
}

.vertical-common-seperator {
  border-left: 5px solid #F4F4F4;
}

/* EVENT PAGE ends here */


@media screen and (max-width: 767px) {

  .home-top-left-box {
    padding: 30px 30px 40px 30px;
  }

  .home-bottom-box {
    margin: -105px 0 0 0;
  }

  .invitation-title,
  .profile-title,
  .home-title {
    font-size: 25px;
  }

  .profile-title-desc,
  .connection-title,
  .reward-title {
    font-size: 20px;
  }

  .connection-title-desc,
  .reward-title-desc {
    font-size: 25px;
    line-height: 30px;
  }

  .reward-title-desc {
    text-align: center;
  }

  .reward-title {
    text-align: center;
  }

  .reward-norank {
    top: 15%;
    font-size: 25px;
  }

  .reward-top-right-box {
    text-align-last: center;
  }

  .reward-top-right-box img {
    height: 100px;
    width: 100px;
  }

  .invitation-top-left-box {
    text-align: center;
  }

  .invitation-top-left-box img {
    height: 75px;
    width: 75px;
  }
}

@media screen and (max-width: 425px) {
  .home-top-left-box {
    max-width: 80%;
  }

  .home-bottom-box {
    margin: -100px 0 0 0;
  }

  .reward-top-right-box img {
    height: 50px;
    width: 50px;
  }

  .reward-rank {
    font-size: 25px;
  }

  .rbox-info-title {
    font-size: 20px;
  }

  .invitation-bottom-left-info-box {
    padding: 0px;
  }
}

@media screen and (max-width: 374px) {
  .home-bottom-box {
    margin: -90px 0 0 0;
  }

  .invitation-bottom-left-info-box {
    flex-direction: column;
    text-align: center;
  }

  .invitation-bottom-left-info-box .info-box-content {
    margin-top: 15px;
  }
}

/* Task #36262 -  JSF Page to collect VSC ADDRESS */
.vsc-main-container {
  background: #fff;
  height: auto;
  padding: 20px;
  border-radius: 25px;
}

.home-alert {
  max-width: 850px;
  margin: 0 auto;
  border: 2px solid #FF0066;
  background-color: #fff;
  border-radius: 25px;
  padding: 10px;
}

.home-alert-border-icon {
  font-size: 20px;
  background-color: #FF0066;
  color: #F3F3F3;
  width: 40px;
  float: right;
  margin: -18px -10px 0 0;
  border-radius: 20px 0 25px 0;
  text-align: center;
}

.vsc-alert-heading {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
}

.vsc-alert-heading p {
  font-size: 14px;
  text-align: left;
}

.vsc-heading {
  text-align: center;
  font-weight: bold;
  line-height: 30px;
}

.vscPageLink,
.vscPageLink:hover {
  text-transform: none;
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 840px) {
  table.vsc-wallet-table {
    overflow-x: scroll;
    display: block;
  }
}

/* Task #36262 -  JSF Page to collect VSC ADDRESS */

.sweet-alert {
  overflow-y: scroll;
  max-height: 600px;
}

#sweet-alert {
  max-height: 90vh;
  overflow-y: auto;
}

#sweet-alert::-webkit-scrollbar {
  width: 1px;
}

#sweet-alert::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

#sweet-alert::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 10px;
  border: 2px solid #f1f1f1;
}

#sweet-alert::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

#sweet-alert {
  scrollbar-width: thin;
  scrollbar-color: #888 #f1f1f1;
}

#sweet-alert .cancel,
#sweet-alert .cancel:hover {
  background-color: #808080 !important;
  font-weight: 600;
  font-size: 16px;
}

#sweet-alert .confirm,
#sweet-alert .confirm:hover {
  background-color: #ff0066 !important;
  font-weight: 600;
  font-size: 16px;
}

.sweet-alert p{
  text-align: left;
}

/* Task #37414 - JSF - Rebuild MAP activity on my.vyvosocialfi.com => Loader update on DEC 9 2024 */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 1050;
  /* Matches Bootstrap's modal z-index */
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-loader-text {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #FF0066;
}

.dataTables_processing {
  display: none !important;
}
/* page loader */
/* common tab css for all pages  */
.page-tab-container {
  display: flex;
  justify-content: start;
  /* align-items: center; */
  background-color: white;
  border-radius: 25px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.page-tab-content {
  display: none;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  margin-top: 10px;
}

.page-tab-content.active {
  display: block;
}

/* tab */

/* My-GPU page => Task #38946 - JSF - Transfer GPU function */
.gpuTab-Label h5 {
  color: #999999;
}

.gpuTab-Label.active h5 {
  color: #000000;
}

.gpu-action-transfer i {
  cursor: pointer;
}

.gpu-action-transfer i {
  font-size: 28px;
  color: #FF0066;
}

.confirm-gpu-otp-button,
.confirm-gpu-otp-button:hover {
  background-color: #FF0066;
  color: #fff;
}

.goback-gpu-otp-button,
.goback-gpu-otp-button:hover {
  background-color: #e3e3e3;
  color: #FF0066;
}

.confirm-gpu-otp-button,
.confirm-gpu-otp-button:hover,
.goback-gpu-otp-button,
.goback-gpu-otp-button:hover {
  
  font-size: 18px;
  font-weight: 600;
  border-radius: 25px;
  padding: 3px 12px;
  display: inline-flex;
}

#gpuCountdown,
.countDownCircle {
  height: 40px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.31) inset;
  border-radius: 34px 34px 34px 34px;
  font-weight: bold;
}

.gpu-bottom-box {
  position: relative;
  z-index: 1;
  overflow: hidden;
  align-content: center;
  text-shadow: 0px 2px 2px white; /* update on Apr 18 25 */
}

.gpu-bottom-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../../../images/jsfi/personal_gpu_bg.jpg'); 
  background-size: cover;
  background-position: center;
  opacity: 18%; /* update on Apr 18 25 */
  z-index: -1;
}
/* My-GPU page */

.page-item.active .page-link {
  z-index: 3;
  color: #fff !important;
  background-color: #FF0066 !important;
  border-color: #fff !important;
}

.page-link {
  color: #fff;
  color: #FF0066 !important;
}

/* Task #39526 - Add Edit Profile section */
.profileSetupForm {
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  border-radius: 25px;
  padding: 10px 25px;
}

.gender-option {
  cursor: pointer;
}

.gender-option input[type="radio"] {
  display: none;
}

.gender-option span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #e4e6f1;
  color: #1f2541;
  font-weight: 600;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.gender-option .check-icon {
  display: none;
  font-size: 14px;
}

.gender-option input[type="radio"]:checked + span {
  background-color: #e50087;
  color: #fff;
}

.gender-option input[type="radio"]:checked + span .check-icon {
  display: inline;
}

/* reward setup page => Task #38278 - Addition of Owner/Co-Owner Payment Functionality */
.colored-border-box {
  border-radius: 25px;
  border: solid 3px #FF0066;
}

@media (max-width: 767.98px) {
  .border-md-bottom {
    border-bottom: 1px solid #dee2e6; /* Bootstrap's default border color */
  }
}

/* Task #38278 - Addition of Owner/Co-Owner Payment Functionality */
.custom-radio .custom-control-label::before {
  background-color: white !important;
  border-color: #ff0066 !important;
}

.custom-radio .custom-control-label::after {
  border-radius: 50%;
  /* Make it rounded */
  border-color: #ff0066;
  /* Set the border color to #ff0066 */
}

/* Custom styles for the tick mark when checkbox is checked */
.custom-radio .custom-control-input:checked~.custom-control-label::after {
  content: '';
  /* No content for the tick mark */
  background-color: #ff0066;
  border-color: #ff0066;
}

/* Task #40408 - Taiwan Enrollment Process */
.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
} 

.btn-tai-next,
.btn-tai-next:hover {
  background-color: #ff0066;
  border-color: #ff0066;
  border-radius: 25px;
  color: #ffffff;
}

.btn-tai-back,
.btn-tai-back:hover {
  background-color: #ced4da;
  border-color: #ced4da;
  border-radius: 25px;
  color: #000000;
}

.form-section-title {
  margin-bottom: 1rem;
  font-weight: 600;
}

.form-control-file {
  padding: 8px 12px;
  border: 1px solid #ced4da;
  border-radius: 4px;
  background-color: #f8f9fa;
  cursor: pointer;
  transition: border-color 0.3s, background-color 0.3s;
}

.form-control-file:hover {
  background-color: #e9ecef;
}

label.required::after, 
span.required::after {
  content: '*';
  color: red;
  margin-left: 4px;
}

.flatInp input[type=text],
.flatInp span {
  background-color: #ffffff !important;
  color: #000000 !important;
}

.flatInp span {
  border: 0px solid;
}

.custom-file-label .selected {
  padding-right: 150px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.theme-title {
  color: #FF0066;
  font-weight: 600;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  margin-right: 8px;
}

.badge-status i {
  margin-right: 6px;
}

/* success */
.badge-status.verified {
  background-color: #e6f6ea;
  color: #28a745;
  border: 1px solid #c3e6cb;
}

/* warning */
.badge-status.reviewing {
  background-color: #fff7e6;
  color: #a97b00;
  border: 1px solid #ffeeba;
}

/* danger */
.badge-status.rejected {
  background-color: #fdeaea;
  color: #dc3545;
  border: 1px solid #f5c6cb;
}

/* Grey */
.badge-status.neutral {
  background-color: #f2f2f2;
  color: #6c757d;
  border: 1px solid #d6d8db;
}

.alert-rejected1 {
  padding: 12px 20px;
  border-radius: 50px;
  /* text-align: center; */
  background: #c31423; /* linear-gradient(135deg, #ff4e50, #c31432); */
  color: white;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(195, 20, 50, 0.4);
  width: 100%;
}

.alert-rejected {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: #dc3545;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.alert-information {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  /* border-left: 5px solid #FF0066; */
  background-color: #e9f3ff;
  color: black;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}

.alert-information::before {
  content: "i";
  font-size: 1.3rem;
}
/* Task #40408 - Taiwan Enrollment Process */

/* Linear - VITA-39 - International Convention - Backoffice Online Check-in */
#swapBtn {
  display: none;
}

.checkin-camscan {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  /* height: 300px; */
  /* background-color: #f0f0f0; */
}

.checkin-swap-btn {
  display: none;
  place-self: center;
  border-radius: 25px;
  color: #7c95a8;
  padding: 3px 9px;
  font-size: 18px;
  background-color: #ffffff;
  border: 1px solid #7c95a8;
}

.checkin-btn {
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
}

.checkin-btn:not(:disabled),
.checkin-btn:not(:disabled):hover,
.checkin-btn:not(:disabled):focus {
  /* Styles when hovered or focused */
  background-color: #849bad;
  color: #212529;
  border-color: #7c95a8;
}

.checkin-btn:disabled {
  /* Styles when disabled */
  /* background-color: #ffffff;
  color: #212529;
  border-color: #7c95a8;
  cursor: not-allowed; */
  background-color: #ffffff99;
  color: #21252980;
  border-color: #7c95a866;
  cursor: not-allowed;
  opacity: 0.6;
}

.checkin-cnfrm-btn {
  font-size: 18px;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  border: 1px solid transparent; /* Use a default border to prevent layout shifts */
  cursor: pointer;
  line-height: 20px;
}

.checkin-cnfrm-btn:not(:disabled) {
  /* Styles when active (not disabled) */
  background-color: #008000; /* Green background */
  color: #ffffff;
}

.checkin-cnfrm-btn:not(:disabled):hover,
.checkin-cnfrm-btn:not(:disabled):focus {
  /* Styles for hover and focus */
  background-color: #008000; /* Darker green on hover for visual feedback */
  border-color: #008000;
}

.checkin-cnfrm-btn:disabled {
  /* Styles when disabled */
  background-color: #ffffff99;
  color: #21252980;
  border-color: #7c95a866;
  cursor: not-allowed;
  opacity: 0.6;
}


/* QR Scanner */ 
.scanner-container {
  max-width: 500px;
  margin: auto;
  border-radius: 1rem;
  padding: 1rem;
  overflow: hidden;
}

.scanner-preview {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  /* Make the preview responsive */
  width: 100%;
  aspect-ratio: 2 / 1;
  /* Maintain a 2:1 shape */
  margin: 0 auto;
  /* Center the preview */
  height: 150px !important;

}

.scanner-preview video {
  width: 100% !important;
  height: 100%;
  object-fit: cover;
}

/* Corner brackets for the scanning area */
.corner {
  position: absolute;
  width: 2.5rem;
  /* 40px */
  height: 2.5rem;
  /* 40px */
  border: 5px solid white;
  z-index: 1;
  /* Ensure corners are on top of the video */
}

.corner.top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.corner.top-right {
  top: 0;
  right: 0;
  border-left: none;
  border-bottom: none;
}

.corner.bottom-left {
  bottom: 0;
  left: 0;
  border-right: none;
  border-top: none;
}

.corner.bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.qr-shaded-region {
  border-width: 30px 30px !important;
}

/* blue theme */
.btn-save,
.btn-save:hover {
  background-color: #5A8EFF;
  border: 1px solid #5A8EFF !important;
  color: #fff;
  border-radius: 25px;
}

.title {
  color: #5A8EFF;
}

.co-pilot-links,
.co-pilot-links:hover {
  font-size: 22px;
  color: #1c1c1c;
}

.invite-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
}

@media (max-width: 425px) {
  .invite-img {
    margin-top: 5px;
  }

  .invite-card {
    flex-direction: column;
  }

  .invite-content {
    margin-top: 10px;
  }
}

.invite-img {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  background-color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-direction: column;
}

.invite-img img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.invite-content {
  margin-left: 1.2rem;
  flex: 1;
}

.invite-content h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.invite-content p {
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.invite-link,
.invite-link:hover {
  color: #007bff;
  font-size: 18px;
  word-break: break-all;
  text-decoration: none;
}

.action-icons,
.action-icons:hover {
  display: flex;
  align-items: center;
  margin: 0.5rem 0 0.8rem;
  text-decoration: none;
}

.action-icons .icon-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  cursor: pointer;
  transition: all 0.2s;
  color: #1c1f26;
  font-size: 25px;
}

.action-icons .icon-circle:hover {
  background: #e2e2e2;
}

.action-icons a,
.action-icons a:hover {
  text-decoration: none;
}

 /* Stili CSS Dashboard VITA-212/update-improve-the-homepage */
    
      /* Font e size standardizzati per tutta la homepage */
      .dashboard-container-odee,
      .dashboard-container-odee *,
      .home-top-left-box,
      .home-top-left-box *,
      .home-bottom-left-box,
      .home-bottom-left-box *,
      .home-bottom-right-box,
      .home-bottom-right-box *,
      .dashboard-card-modern,
      .dashboard-card-modern * {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
      }

      /* Background neutro tipo Odee */
      .tab-pane.relative {
        background: #f5f7fa;
        padding: 32px 24px;
        height: fit-content;
      }

      /* Container principale dashboard */
      .dashboard-container-odee {
        max-width: 1200px;
        margin: 0 auto;
      }

      /* Allineamento larghezza primo blocco con le 3 cards */
      .row.mt-3 {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
      }

      .row.mt-3 .col-12 {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
      }

      .row.mt-3 .col-12 .home-top-left-box {
       background: #E5E9F2; /* grigio chiaro */
       padding: 4px 4px;      /* ↓ meno alto */
       gap: 10px;              /* opzionale: riduce spazio tra elementi */
       width: 100%;
       box-sizing: border-box;
       margin-left: 0;
       margin-right: 0;
       border-left: 4px solid #ff0066;
       box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
       overflow: hidden;
       transition: all 0.3s ease;
       position: relative;
       display: flex;
       align-items: flex-start;
      }

      /* Assicura che le 3 cards abbiano lo stesso padding delle colonne */
      .row.home-bottom-box {
        margin-left: -12px;
        margin-right: -12px;
      }

      .row.home-bottom-box .col-12.col-md-4 {
        padding-left: 12px;
        padding-right: 12px;
      }

      /* Card moderne stile Odee - pulite e minimali */
      .dashboard-card-modern {
        background: #ffffff;
        border-radius: 16px;
        padding: 32px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
        transition: all 0.2s ease;
        border: none;
        margin-bottom: 24px;
        position: relative;
      }

      .dashboard-card-modern:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
      }

      /* Card con bordo sinistro magenta stile Odee */
      .dashboard-card-modern.with-magenta-border {
        border-left: 4px solid #ff0066;
        border-top-left-radius: 16px;
        border-bottom-left-radius: 16px;
      }

      /* Pagina my-rank: solo blocco titolo/descrizione (PL 69631068) a tutta larghezza con bordo magenta */
      .my-rank-top-box {
        width: 100%;
        padding: 0 !important;
        box-sizing: border-box;
      }
      .my-rank-top-box .reward-top-left-box {
        width: 100%;
        min-height: 100%;
        box-sizing: border-box;
        padding: 18px 24px 18px 24px;
        border-radius: 12px;
      }
      .my-rank-top-box .reward-title {
        margin: 0 0 18px 0;
        line-height: 1.2;
      }
      .my-rank-top-box .reward-title-desc {
        margin: 0;
        line-height: 1.2;
      }
      /* connection-reward: primo div come in page rank (tutta larghezza, bordo magenta, senza icona) */
      .connection-reward-top-box {
        width: 100%;
        padding: 0 !important;
        box-sizing: border-box;
      }
      .connection-reward-top-box.dashboard-card-modern {
        padding: 0 !important;
      }
      .connection-reward-top-box .reward-top-left-box {
        width: 100%;
        min-height: 100%;
        box-sizing: border-box;
        padding: 18px 24px 18px 24px;
        border-radius: 12px;
      }
      .connection-reward-top-box .reward-title {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
        font-size: 1.5rem !important;
        font-weight: 700;
        color: #ff0066;
        letter-spacing: 0.02em;
        margin: 0 0 18px 0 !important;
        line-height: 1.2 !important;
      }
      .connection-reward-top-box .connection-reward-desc {
        margin: 0;
        line-height: 1.2;
      }
      /* community-reward: primo div come in page rank (tutta larghezza, bordo magenta, senza icona) */
      .community-reward-top-box {
        width: 100%;
        padding: 0 !important;
        box-sizing: border-box;
      }
      .community-reward-top-box.dashboard-card-modern {
        padding: 0 !important;
      }
      .community-reward-top-box .reward-top-left-box {
        width: 100%;
        min-height: 100%;
        box-sizing: border-box;
        padding: 18px 24px 18px 24px;
        border-radius: 12px;
      }
      .community-reward-top-box .reward-title {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
        font-size: 1.5rem !important;
        font-weight: 700;
        color: #ff0066;
        letter-spacing: 0.02em;
        margin: 0 0 18px 0 !important;
        line-height: 1.2 !important;
      }
      .community-reward-top-box .community-reward-desc {
        margin: 0;
        line-height: 1.2;
        padding-left: 0 !important;
      }
      /* my-documents: primo div come in page rank (tutta larghezza, bordo magenta, senza icona) */
      .my-documents-top-box {
        width: 100%;
        padding: 0 !important;
        box-sizing: border-box;
      }
      .my-documents-top-box.dashboard-card-modern {
        padding: 0 !important;
      }
      .my-documents-top-box .reward-top-left-box {
        width: 100%;
        min-height: 100%;
        box-sizing: border-box;
        padding: 18px 24px 18px 24px;
        border-radius: 12px;
      }
      .my-documents-top-box .reward-title {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
        font-size: 1.5rem !important;
        font-weight: 700;
        color: #ff0066;
        letter-spacing: 0.02em;
        margin: 0 0 18px 0 !important;
        line-height: 1.2 !important;
      }
      .my-documents-top-box .reward-title-desc {
        margin: 0;
        line-height: 1.2;
      }
      /* my-connections: primo div come in page rank (tutta larghezza, bordo magenta, senza icona) */
      .my-connections-top-box {
        width: 100%;
        padding: 0 !important;
        box-sizing: border-box;
      }
      .my-connections-top-box.dashboard-card-modern {
        padding: 0 !important;
      }
      .my-connections-top-box .reward-top-left-box {
        width: 100%;
        min-height: 100%;
        box-sizing: border-box;
        padding: 18px 24px 18px 24px;
        border-radius: 12px;
      }
      .my-connections-top-box .reward-title {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
        font-size: 1.5rem !important;
        font-weight: 700;
        color: #ff0066;
        letter-spacing: 0.02em;
        margin: 0 0 18px 0 !important;
        line-height: 1.2 !important;
      }
      .my-connections-top-box .my-connections-desc,
      .my-connections-top-box .reward-top-left-box .connection-title-desc {
        margin: 0;
        line-height: 1.2;
        padding-left: 0 !important;
      }
      /* my-invitations: primo div come altre pagine (tutta larghezza, bordo magenta, senza icona) */
      .my-invitations-top-box {
        width: 100%;
        padding: 0 !important;
        box-sizing: border-box;
      }
      .my-invitations-top-box.dashboard-card-modern {
        padding: 0 !important;
      }
      .my-invitations-top-box .reward-top-left-box {
        width: 100%;
        min-height: 100%;
        box-sizing: border-box;
        padding: 18px 24px 18px 24px;
        border-radius: 12px;
      }
      /* promotions: primo div come in page rank (tutta larghezza, bordo magenta, senza icona) */
      .promotions-top-box {
        width: 100%;
        padding: 0 !important;
        box-sizing: border-box;
      }
      .promotions-top-box.dashboard-card-modern {
        padding: 0 !important;
      }
      .promotions-top-box .reward-top-left-box {
        width: 100%;
        min-height: 100%;
        box-sizing: border-box;
        padding: 18px 24px 18px 24px;
        border-radius: 12px;
      }
      .promotions-top-box .reward-title {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
        font-size: 1.5rem !important;
        font-weight: 700;
        color: #ff0066;
        letter-spacing: 0.02em;
        margin: 0 0 18px 0 !important;
        line-height: 1.2 !important;
      }
      .promotions-top-box .reward-title-desc {
        margin: 0;
        line-height: 1.2;
        padding-left: 0 !important;
      }
      /* promotions: secondo blocco con size più piccolo */
      .promotions-content-box {
        font-size: 0.9rem;
      }
      .promotions-content-box .promotions-event-card .card-body {
        padding: 0.75rem 1rem;
      }
      .promotions-content-box .promotions-event-card .card-title.event-title {
        font-size: 1rem;
        padding: 0.35rem 1%;
      }
      .promotions-content-box .promotions-event-card .event-title img {
        max-width: 80px;
        max-height: 40px;
      }
      .promotions-content-box .promotions-event-card .eventDesc1 {
        font-size: 0.95rem;
      }
      .promotions-content-box .promotions-event-card .eventDesc2,
      .promotions-content-box .promotions-event-card .eventDesc {
        font-size: 0.85rem;
      }
      .promotions-content-box .promotions-event-card .col-md-6 img[src*="promotions"] {
        max-height: 180px;
        width: auto;
        object-fit: contain;
      }
      .promotions-content-box .promotions-event-card .font-weight-bold {
        font-size: 0.9rem;
      }
      .promotions-content-box .promotions-event-card ul li {
        font-size: 0.85rem;
      }
      .promotions-content-box .promotions-event-card .alert {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
      }
      .promotions-content-box .promotions-event-card h3 {
        font-size: 1.1rem;
      }
      .my-invitations-top-box .reward-title {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
        font-size: 1.5rem !important;
        font-weight: 700;
        color: #ff0066;
        letter-spacing: 0.02em;
        margin: 0 0 18px 0 !important;
        line-height: 1.2 !important;
      }
      .my-invitations-top-box .my-invitations-desc,
      .my-invitations-top-box .reward-top-left-box .invitation-title {
        margin: 0;
        line-height: 1.2;
        padding-left: 0 !important;
      }
      /* copilot-invitations: primi due blocchi come my-invitations */
      .copilot-invitations-top-box {
        width: 100%;
        padding: 0 !important;
        box-sizing: border-box;
      }
      .copilot-invitations-top-box.dashboard-card-modern {
        padding: 0 !important;
      }
      .copilot-invitations-top-box .reward-top-left-box {
        width: 100%;
        min-height: 100%;
        box-sizing: border-box;
        padding: 18px 24px 18px 24px;
        border-radius: 12px;
      }
      .copilot-invitations-top-box .reward-title {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
        font-size: 1.5rem !important;
        font-weight: 700;
        color: #ff0066;
        letter-spacing: 0.02em;
        margin: 0 0 18px 0 !important;
        line-height: 1.2 !important;
      }
      .copilot-invitations-top-box .copilot-invitations-desc {
        margin: 0;
        line-height: 1.2;
        padding-left: 0 !important;
      }
      /* Primi div di tutte le pagine: titolo e sottotitolo sempre allineati a sinistra (anche su mobile) */
      .home-top-left-box .reward-title,
      .home-top-left-box .profile-title,
      .my-rank-top-box .reward-title,
      .my-rank-top-box .reward-title-desc,
      .connection-reward-top-box .reward-title,
      .connection-reward-top-box .connection-reward-desc,
      .community-reward-top-box .reward-title,
      .community-reward-top-box .community-reward-desc,
      .my-documents-top-box .reward-title,
      .my-documents-top-box .reward-title-desc,
      .my-connections-top-box .reward-title,
      .my-connections-top-box .my-connections-desc,
      .my-connections-top-box .connection-title-desc,
      .my-invitations-top-box .reward-title,
      .my-invitations-top-box .my-invitations-desc,
      .promotions-top-box .reward-title,
      .promotions-top-box .reward-title-desc,
      .copilot-invitations-top-box .reward-title,
      .copilot-invitations-top-box .copilot-invitations-desc {
        text-align: left !important;
      }
      /* Pagina copilot-invitations: blu come i bottoni (#5A8EFF) al posto del magenta */
      .page-copilot-invitations .copilot-invitations-top-box.dashboard-card-modern.with-magenta-border {
        border-left-color: #5A8EFF;
      }
      .page-copilot-invitations .copilot-invitations-top-box .reward-title {
        color: #5A8EFF !important;
      }
      .page-copilot-invitations .my-invitations-desc-block .jsf-info-panel-icon-svg circle {
        fill: #5A8EFF;
      }
      .page-copilot-invitations .my-invitations-desc-block .jsf-info-panel-icon-svg text {
        fill: #ffffff;
      }
      /* Pagina copilot-invitations: paginazione in blu come i bottoni */
      .page-copilot-invitations .page-item.active .page-link {
        background-color: #5A8EFF !important;
        border-color: #5A8EFF !important;
        color: #fff !important;
      }
      .page-copilot-invitations .page-link {
        color: #5A8EFF !important;
      }
      .page-copilot-invitations .page-link:hover {
        color: #5A8EFF !important;
        background-color: rgba(90, 142, 255, 0.1);
        border-color: #5A8EFF;
      }
      /* DataTables pagination (se usata) in blu sulla pagina copilot-invitations */
      .page-copilot-invitations .dataTables_wrapper .paginate_button.current,
      .page-copilot-invitations .dataTables_wrapper .paginate_button.current:hover {
        background: #5A8EFF !important;
        color: #fff !important;
        border-color: #5A8EFF !important;
      }
      .page-copilot-invitations .dataTables_wrapper .paginate_button:not(.current):not(.disabled) {
        color: #5A8EFF !important;
      }
      .page-copilot-invitations .dataTables_wrapper .paginate_button:not(.current):not(.disabled):hover {
        background: rgba(90, 142, 255, 0.1) !important;
        color: #5A8EFF !important;
        border-color: #5A8EFF !important;
      }
      .my-invitations-desc-block {
        padding: 1rem 1.25rem;
        border: 1px solid rgba(108, 117, 125, 0.35);
        border-radius: 12px;
      }
      .my-invitations-desc-block.my-invitations-desc-with-icon {
        display: flex;
        align-items: flex-start;
        gap: 12px;
      }
      .my-invitations-desc-block .jsf-info-panel-icon {
        flex-shrink: 0;
      }
      .jsf-info-panel-icon.jsf-info-panel-icon-svg {
        background: none;
        width: 40px;
        height: 40px;
        line-height: 0;
      }
      .jsf-info-panel-icon.jsf-info-panel-icon-svg svg {
        display: block;
        width: 40px;
        height: 40px;
      }
      .my-invitations-desc-block .my-invitations-desc-text {
        flex: 1;
      }
      /* Card Next Milestone (div destra pagina rank) - design allegato */
      .next-milestone-card {
        height: 100%;
        padding: 20px 24px 24px 24px !important;
        box-sizing: border-box;
        background: #ffffff;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(0, 0, 0, 0.06);
      }
      .next-milestone-label {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        font-size: 0.875rem;
        font-weight: 500;
        color: #6C757D;
        margin: 0 0 4px 0;
        line-height: 1.3;
      }
      .next-milestone-name {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        font-size: 1.25rem;
        font-weight: 700;
        color: #343A40;
        margin: 0 0 8px 0;
        line-height: 1.3;
      }
      .next-milestone-pts {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        margin: 0 0 12px 0;
        line-height: 1.3;
      }
      .next-milestone-pts-num {
        font-size: 1.75rem;
        font-weight: 700;
        color: #ff0066;
        margin-right: 0.25em;
      }
      .next-milestone-pts {
        font-size: 0.95rem;
        font-weight: 400;
        color: #343A40;
      }
      .next-milestone-bar-wrap {
        height: 10px;
        background: #E9ECEF;
        border-radius: 999px;
        overflow: hidden;
        margin: 0 0 6px 0;
      }
      .next-milestone-bar {
        height: 100%;
        background: #6C757D;
        border-radius: 999px;
        transition: width 0.4s ease;
      }
      .next-milestone-pct {
        font-size: 0.8rem;
        color: #6C757D;
        margin: 0 0 12px 0;
        line-height: 1.3;
      }
      .next-milestone-message {
        font-size: 0.95rem;
        color: #343A40;
        margin: 0 0 16px 0;
        line-height: 1.45;
      }
      .next-milestone-actions {
        margin: 0;
        text-align: right;
      }
      .next-milestone-btn {
        display: inline-block;
        padding: 10px 20px;
        background: linear-gradient(90deg, #ff0066 0%, #e6005c 100%);
        color: #ffffff !important;
        font-size: 0.95rem;
        font-weight: 600;
        border-radius: 999px;
        text-decoration: none !important;
        transition: opacity 0.2s ease;
      }
      .next-milestone-btn:hover {
        opacity: 0.92;
        color: #ffffff !important;
      }
      .next-milestone-btn .hp-conn-pg-link-arrow {
        margin-left: 0.35em;
        color: #ffffff !important;
        font-size: 0.85em;
      }

      /* Due blocchi sotto: card rank attuale e prossimo rank */
      .my-rank-card {
        height: 100%;
        padding: 20px;
        box-sizing: border-box;
      }
      .my-rank-two-blocks {
        display: flex;
        flex-wrap: nowrap;
        gap: 1cm;
        margin-left: 0;
        margin-right: 0;
        margin-top: 2rem !important;
      }
      .my-rank-two-blocks .my-rank-col {
        flex: 1 1 0;
        min-width: 0;
        max-width: calc(50% - 0.5cm);
      }
      @media (max-width: 767.98px) {
        .my-rank-two-blocks {
          flex-direction: column;
          gap: 1rem;
        }
        .my-rank-two-blocks .my-rank-col {
          max-width: 100%;
          width: 100%;
        }
      }
      /* Card ridotte per stare sulla stessa riga con spazio al centro */
      .my-rank-two-blocks .reward-top-right-box.my-rank-card.dashboard-card-modern {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }

      /* ========== Grafica pagina Awards (my-rank) ========== */
      .page-awards .my-rank-top-box .reward-title {
        font-size: 1.5rem !important;
        font-weight: 700;
        color: #ff0066;
        letter-spacing: 0.02em;
        margin: 0 0 2px 0 !important;
        line-height: 1.2 !important;
      }
      .page-awards .my-rank-top-box .reward-title-desc {
        margin: 0 !important;
        line-height: 1.2 !important;
      }
      .page-awards .my-rank-two-blocks .my-rank-card {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04);
        border: 1px solid rgba(255, 0, 102, 0.12);
        transition: box-shadow 0.25s ease, transform 0.2s ease;
      }
      .page-awards .my-rank-two-blocks .my-rank-col:first-child .my-rank-card {
        padding-left: 2.25rem;
      }
      .page-awards .my-rank-two-blocks .my-rank-card:hover {
        box-shadow: 0 8px 28px rgba(255, 0, 102, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
      }
      .page-awards .my-rank-card .reward-image {
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
      }
      .page-awards .my-rank-card .reward-rank {
        font-size: 1.35rem;
        font-weight: 700;
        color: #1a1a1a;
        margin-top: 0.5rem;
      }
      .page-awards .my-rank-card .rbox-info-title {
        font-size: 0.95rem;
        font-weight: 600;
        color: #ff0066;
        margin-top: 0.25rem;
      }
      .page-awards .my-rank-card .rbox-info-desc {
        font-size: 0.95rem;
        color: #374151;
      }
      .page-awards .reward-bottom-box {
        background: #fafafa;
        border-radius: 16px;
        padding: 1.25rem 1.5rem;
        border: 1px solid #eee;
      }
      .page-awards .reward-bottom-box .periodList {
        border-radius: 10px;
        border: 1px solid #e5e7eb;
        padding: 0.5rem 0.75rem;
      }
      .page-awards .reward-bottom-box .filerVolumeButton {
        border-radius: 10px;
        font-weight: 600;
        padding: 0.5rem 1rem;
        transition: all 0.2s ease;
      }
      .page-awards .reward-bottom-box #filterRankHistory {
        background: linear-gradient(135deg, #ff0066 0%, #e6005c 100%);
        color: #fff;
        border: none;
      }
      .page-awards .reward-bottom-box #filterRankHistory:hover {
        background: linear-gradient(135deg, #e6005c 0%, #cc0052 100%);
        color: #fff;
      }
      .page-awards .rank-history-table.reward-table {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
      }
      .page-awards .rank-history-table.reward-table thead td {
        background: #f3f4f6 !important;
        color: #374151 !important;
        font-weight: 600;
        padding: 0.75rem 0.5rem;
        border: none;
      }
      .page-awards .rank-history-table.reward-table tbody tr:nth-child(even) {
        background: #f9fafb;
      }
      .page-awards .rank-history-table.reward-table tbody td {
        padding: 0.6rem 0.5rem;
        border-color: #eee;
      }
      /* Colonna Improved: badge tipo bottone YES (verde) / NO (azzurro) */
      .page-awards .rank-history-table.reward-table tbody td:last-child {
        text-align: center;
        vertical-align: middle;
      }
      .improved-badge {
        display: inline-block;
        padding: 0.35rem 1rem;
        border-radius: 999px;
        font-size: 0.8rem;
        font-weight: 700;
        text-align: center;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
      }
      .improved-badge.improved-yes {
        background: #5A8EFF;
        color: #ffffff;
        border: none;
      }
      .improved-badge.improved-no {
        background: #f8f8fa;
        color: #4a5a7a;
        border: 1px solid #b8c5d6;
      }

      /* Valori evidenziati in magenta stile Odee */
      .card-value-magenta {
        font-size: 36px;
        font-weight: 700;
        color: #ff0066;
        line-height: 1.2;
        margin: 12px 0;
        letter-spacing: -0.02em;
      }

      /* Valori grandi in nero stile Odee */
      .card-value-large {
        font-size: 36px;
        font-weight: 700;
        color: #1a202c;
        line-height: 1.2;
        margin: 12px 0;
        letter-spacing: -0.02em;
      }

      /* Label per card stile Odee - più pulite */
      .card-label {
        font-size: 13px;
        text-transform: none;
        color: #718096;
        letter-spacing: 0;
        font-weight: 500;
        margin-bottom: 12px;
      }

      /* Titoli card stile Odee */
      .card-title {
        font-size: 24px;
        font-weight: 700;
        color: #1a202c;
        margin-bottom: 20px;
        line-height: 1.3;
        letter-spacing: -0.01em;
      }

      /* Icona informativa magenta */
      .info-icon-magenta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: #ff0066;
        color: #ffffff;
        font-size: 14px;
        font-weight: bold;
        cursor: pointer;
        margin-left: 8px;
      }

      /* Miglioramenti per home-bottom-left-box e home-bottom-right-box stile Odee */
      .home-bottom-left-box,
      .home-bottom-right-box {
        background: #ffffff;
        border-radius: 16px;
        padding: 32px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
        border: none;
        transition: all 0.2s ease;
      }

      .home-bottom-left-box:hover,
      .home-bottom-right-box:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
      }

      /* Border box migliorato stile Odee */
      .border-box {
        background: #f7fafc;
        border-radius: 12px;
        border: 1px solid #e2e8f0;
        padding: 24px;
        margin-bottom: 20px;
      }

      /* Sub-title-value con stile magenta stile Odee */
      .sub-title-value {
        background-color: #fff5f7;
        border-radius: 8px;
        max-width: 70%;
        margin: 0 auto;
        color: #ff0066;
        font-weight: 600;
        padding: 10px 20px;
        font-size: 18px;
      }

      /* Sub-title-text stile Odee */
      .sub-title-text {
        color: #4a5568;
        font-weight: 500;
        font-size: 14px;
      }

      /* Spaziatura migliorata per righe */
      .row {
        margin-left: -12px;
        margin-right: -12px;
      }

      .row > [class*="col-"] {
        padding-left: 12px;
        padding-right: 12px;
      }

      /* Stili dashboard per homepage - stessi della dashboard */
      .home-bottom-left-box.dashboard-card-modern,
      .home-bottom-right-box.dashboard-card-modern {
        background: #ffffff !important;
        border-radius: 12px;
        padding: 20px;
        border: 1px solid #e5e7eb;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        height: 100%;
        transition: all 0.2s;
        display: flex;
        flex-direction: column;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        font-size: 15px;
      }

      /* Prima e seconda card con meno spazio in alto */
      .home-bottom-left-box.dashboard-card-modern {
        padding-top: 12px !important;
      }

      .my-rank-top-box.dashboard-card-modern,
      .connection-reward-top-box.dashboard-card-modern,
      .community-reward-top-box.dashboard-card-modern,
      .my-connections-top-box.dashboard-card-modern,
      .my-invitations-top-box.dashboard-card-modern,
      .promotions-top-box.dashboard-card-modern,
      .copilot-invitations-top-box.dashboard-card-modern {
        padding: 0 !important;
      }

      .home-bottom-left-box.dashboard-card-modern:hover,
      .home-bottom-right-box.dashboard-card-modern:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      }

      /* Hub Console Header per homepage - senza logo */
      .home-bottom-left-box .hub-console-header {
        padding: 5px 0 5px 0;
        margin-bottom: 0;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 0;
      }

      .home-bottom-left-box .hub-console-title-row {
        display: flex;
        align-items: center;
        gap: 0;
        flex: 1;
        width: 100%;
      }

      .home-bottom-left-box .hub-console-title-main {
        font-size: 22px;
        font-weight: 700;
        color: #111827;
        margin: 0;
        letter-spacing: -0.02em;
        text-align: center;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      }

      /* Info row compact per homepage */
      .home-bottom-left-box .info-row-compact {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 10px 0;
        padding-left: 0;
        border-top: 1px solid #f3f4f6;
        margin-top: 4px;
        min-height: 40px;
      }

      .home-bottom-left-box .info-row-compact:first-of-type {
        border-top: none;
        margin-top: 0;
        padding-top: 0;
      }

      .home-bottom-left-box .info-label-compact {
        font-size: 11px;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        font-weight: 600;
      }

      .home-bottom-left-box .info-value-compact {
        font-size: 14px;
        font-weight: 700;
        color: #111827;
        text-align: right;
      }

      .home-bottom-left-box .status-badge-inline {
        display: inline-block;
        padding: 4px 10px;
        border-radius: 12px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        background: #f3f4f6;
        color: #4b5563;
        margin-left: 8px;
        vertical-align: middle;
      }

      .home-bottom-left-box .status-badge-active {
        background: #d1fae5;
        color: #065f46;
      }

      .home-bottom-left-box .info-icon {
        display: inline-block;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid;
        font-size: 12px;
        text-align: center;
        line-height: 14px;
        cursor: pointer;
        vertical-align: middle;
        font-weight: bold;
        font-style: normal;
        margin-left: 4px;
      }

      .home-bottom-left-box .prev-status-highlight {
        text-align: center !important;
        padding: 12px 20px;
        border: 3px solid #ff0066;
        border-radius: 8px;
        background-color: #fff;
        margin: 0 0 8px 0;
        display: block;
        width: 100%;
        box-sizing: border-box;
      }

      /* Stili dashboard-card per card centrale (secondo blocco) */
      .dashboard-card-modern .info-row-compact {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 10px 0;
        border-bottom: 1px solid #f3f4f6;
        margin-bottom: 4px;
        min-height: 40px;
      }

      .dashboard-card-modern .info-row-compact:last-of-type {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
      }

      .dashboard-card-modern .info-label-compact {
        font-size: 11px;
        color: #6b7280;
        text-transform: uppercase;
        letter-spacing: 0.3px;
        font-weight: 600;
      }

      .dashboard-card-modern .info-value-compact {
        font-size: 14px;
        font-weight: 700;
        color: #111827;
        text-align: right;
      }

      .dashboard-card-modern .info-icon {
        display: inline-block;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        border: 2px solid;
        font-size: 12px;
        text-align: center;
        line-height: 14px;
        cursor: pointer;
        vertical-align: middle;
        font-weight: bold;
        font-style: normal;
        margin-left: 4px;
      }

      .dashboard-card-modern .prev-status-highlight {
        text-align: center !important;
        padding: 12px 20px;
        border: 3px solid #ff0066;
        border-radius: 8px;
        background-color: #fff;
        margin: 0 0 8px 0;
        display: block;
        width: 100%;
        box-sizing: border-box;
      }

      /* Hub Console Header per dashboard-card-modern */
      .dashboard-card-modern .hub-console-header {
        padding: 0 0 0 0;
        margin-bottom: 0;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        gap: 12px;
        height: 48px;
      }

      /* Hub Console Header per home-bottom-left-box */
      .home-bottom-left-box .hub-console-header {
        padding: 0 0 0 0;
        margin-bottom: 0;
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        gap: 12px;
        height: 48px;
      }

      /* Linee hr allineate (esclusa la linea magenta che ha .home-card-magenta-hr) */
      .dashboard-card-modern hr:not(.home-card-magenta-hr),
      .home-bottom-left-box hr:not(.home-card-magenta-hr) {
        margin: 10px 0 15px 0 !important;
        border: none;
        border-top: 1px solid #e5e7eb;
        width: 100%;
      }

      /* Stile per il link in basso a destra nella quarta card */
      .dashboard-card-modern p[style*="position: absolute"][style*="bottom: 16px"][style*="right: 16px"],
      .dashboard-card-modern p[style*="position: absolute"][style*="bottom: 16px"][style*="right: 16px"] *,
      .dashboard-card-modern p[style*="position: absolute"][style*="bottom: 16px"][style*="right: 16px"] a,
      .dashboard-card-modern p[style*="position: absolute"][style*="bottom: 16px"][style*="right: 16px"] a:link,
      .dashboard-card-modern p[style*="position: absolute"][style*="bottom: 16px"][style*="right: 16px"] a:visited,
      .dashboard-card-modern p[style*="position: absolute"][style*="bottom: 16px"][style*="right: 16px"] a:hover,
      .dashboard-card-modern p[style*="position: absolute"][style*="bottom: 16px"][style*="right: 16px"] a:active,
      .dashboard-card-modern p[style*="position: absolute"][style*="bottom: 16px"][style*="right: 16px"] span {
        color: #ff0066 !important;
      }
      /* Hover: label bianca per action-btn in basso a destra (es. 4ª scheda Connection/Community Rewards) */
      .dashboard-card-modern p[style*="position: absolute"][style*="bottom: 16px"][style*="right: 16px"] a.action-btn:hover,
      .dashboard-card-modern p[style*="position: absolute"][style*="bottom: 16px"][style*="right: 16px"] a.action-btn:hover * {
        color: #ffffff !important;
      }

      .home-bottom-left-box .hub-console-title-main {
        font-size: 22px;
        font-weight: 700;
        color: #000000;
        margin: 0 auto;
        letter-spacing: -0.02em;
        text-align: center;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        display: block;
        width: auto;
      }

      .home-bottom-left-box .hub-console-logo-wrapper {
        display: none;
      }

      .home-bottom-left-box .hub-console-title-row {
        width: 100%;
        justify-content: center;
        display: flex;
        align-items: center;
      }

      /* Centra limmagine reward-image nella prima card */
      .home-bottom-left-box .reward-image {
        display: block;
        margin: 0 auto;
      }

      .home-bottom-left-box .hub-console-title-main {
        font-size: 22px;
        font-weight: 700;
        color: #000000;
        margin: 0;
        letter-spacing: -0.02em;
        text-align: center;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        width: 100%;
      }

      .dashboard-card-modern .hub-console-logo-wrapper {
        width: 48px;
        height: 48px;
        background: #f3f4f6;
        border-radius: 10px;
        padding: 8px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .dashboard-card-modern .hub-console-logo-wrapper img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
      }

      .dashboard-card-modern .hub-console-title-row {
        display: flex;
        align-items: center;
        gap: 0;
        flex: 1;
        width: 100%;
      }

      .dashboard-card-modern .hub-console-title-main {
        font-size: 22px;
        font-weight: 700;
        color: #000000;
        margin: 0;
        letter-spacing: -0.02em;
        text-align: left;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      }

      /* Stile per il blocco home-top-left-box - Layout con barra rosa a sinistra e testo */
      /* Stile per il blocco home-top-left-box - Layout stile Odee */
      .home-top-left-box {
        display: flex;
        align-items: center;
        gap: 0;
        margin-top: 0;
        margin-bottom: 16px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 24px 24px 16px 24px;
        margin-left: 0;
        margin-right: 0;
        background: #ffffff;
        border: 1px solid #e5e7eb;
        border-left: 4px solid #ff0066;
        border-radius: 16px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        font-size: 15px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        flex: 1 1 auto; 
        min-width: 0;
      }

      .home-top-left-box:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.06);
        transform: translateY(-2px);
      }

      /* Container interno per contenuto e bottoni */
      .home-top-left-box-inner {
        display: flex;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        position: relative;
        z-index: 2;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        box-sizing: border-box;
        gap: 8px;
      }

      /* Container per contenuto */
      .home-top-left-box-content {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 0;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
      }

      /* Container per bottoni allineati a destra */
      .home-top-left-box-buttons {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 8px;
        padding: 0 24px;
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 0;
        margin-left: 0;
        margin-right: 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
      }

      /* Stili per bottoni con sfondo magenta */
      .home-top-left-box-buttons .btn.btn-primary {
        background-color: #ff0066 !important;
        border-color: #ff0066 !important;
        color: #ffffff !important;
        transition: all 0.3s ease !important;
        cursor: pointer !important;
      }

      .home-top-left-box-buttons .btn.btn-primary:hover {
        background-color: #e6005c !important;
        border-color: #e6005c !important;
        color: #ffffff !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 8px rgba(255, 0, 102, 0.3) !important;
      }

      .home-top-left-box-buttons .btn.btn-primary:active {
        transform: translateY(0) !important;
        box-shadow: 0 2px 4px rgba(255, 0, 102, 0.2) !important;
      }

      .home-top-left-text-wrapper {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;  /* prima riga a sinistra */
        justify-content: flex-start;
        padding: 0;
        margin: 0;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        width: 100%;
      }

      /* Prima riga: PL 69638963 come titolo pagina rank (font, size), colore magenta */
      .home-top-left-text-wrapper .reward-title {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
        font-size: 1.5rem !important;
        font-weight: 700;
        color: #ff0066 !important;
        letter-spacing: 0.02em;
        margin: 0 0 2px 0 !important;
        padding: 12px 12px 0 28px;
        line-height: 0.8 !important;
        text-align: left !important;
        width: 100%;
      }

      /* Seconda e terza riga centrati e in neretto (nome, co-owner, 69638963) */
      .home-top-left-text-wrapper .profile-title,
      .home-top-left-text-wrapper .home-title {
        font-size: 30px !important;      
        font-weight: 700 !important;
        line-height: 18px !important;
        text-align: center !important;
        color: #1C1F26 !important;
        margin: 0 !important;
        width: 100%;
      }

      /* Stili per terzo blocco compatto - meno spazio verticale */
      .compact-third-block {
        padding: 8px !important;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
        font-size: 15px !important;
      }

      .compact-third-block * {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
      }

      /* Stesso font e size di h5 (69658714) per il blocco 3 */
      .compact-third-block .eventDesc1,
      .compact-third-block .eventDesc,
      .compact-third-block p:not(.text-sm):not(.hp-conn-pg-link),
      .compact-third-block .h6 {
        font-size: inherit !important;
        font-weight: inherit !important;
        line-height: inherit !important;
        font-family: inherit !important;
      }

      /* Applica lo stesso stile di h5 al blocco 3 */
      .compact-third-block .eventDesc1,
      .compact-third-block .eventDesc,
      .compact-third-block p.h6:not(.text-sm):not(.hp-conn-pg-link):not(.font-weight-bold) {
        font-size: 1.25rem !important;
        font-weight: 500 !important;
        line-height: 1.5 !important;
      }

      .compact-third-block .border-box {
        padding: 12px !important;
        margin-bottom: 8px !important;
      }

      .compact-third-block .border-box:last-child {
        margin-bottom: 0 !important;
      }

      .compact-third-block img {
        max-height: 120px !important;
        object-fit: cover;
      }

      .compact-third-block .h4,
      .compact-third-block .h5 {
        margin-bottom: 8px !important;
        margin-top: 8px !important;
      }

      .compact-third-block .mt-3 {
        margin-top: 8px !important;
      }

      .compact-third-block .mt-2 {
        margin-top: 6px !important;
      }

      .compact-third-block .p-3 {
        padding: 6px !important;
      }

      .compact-third-block .p-2 {
        padding: 8px !important;
      }

     .compact-third-block .border-box-widget{
  padding: 0 !important;   /* meno padding verticale */
  min-width: auto;
  line-height: 1 !important;     /* compatta l’altezza complessiva */
}

.compact-third-block .border-box-widget p{
  font-size: 9px !important;
  margin: 0 !important;          /* toglie il margin default del <p> */
  line-height: 1.05 !important;  /* ancora più compatto */
}

/* Mobile: sposta l'icona Hub più verso il bordo sinistro della card Connections */
@media (max-width: 767.98px) {
  .compact-third-block {
    padding-left: 8px !important;
  }
}
      .compact-third-block .d-sm-flex.mt-1 {
        margin-top: 4px !important;
      }

      .compact-third-block .flex-grow-1 p {
        margin-bottom: 2px !important;
        line-height: 1.2 !important;
      }
      
.compact-third-block .border-box-widget{
  flex-direction: column;
  align-items: left;
  gap: 0 !important;
}

      /* Stile pulsante VIEW (action-btn) come nelle tabelle */
      .action-btn {
        display: inline-block;
        padding: 6px 14px;
        font-size: 0.8rem;
        font-weight: 600;
        color: #E91E63;
        background: #FCE4EC;
        border: none;
        border-radius: 999px;
        cursor: pointer;
        transition: all 0.15s ease-in-out;
        text-transform: uppercase;
        text-decoration: none !important;
      }

      .action-btn:hover {
        background: #E91E63 !important;
        color: #ffffff !important;
      }

      .action-btn:hover,
      .action-btn:hover *,
      .action-btn:hover span,
      .action-btn:hover p,
      .action-btn:hover div,
      .dashboard-card-modern .action-btn:hover,
      .dashboard-card-modern .action-btn:hover *,
      .dashboard-card-modern .action-btn:hover span,
      .dashboard-card-modern .action-btn:hover p,
      .dashboard-card-modern .action-btn:hover div,
      .compact-third-block .action-btn:hover,
      .compact-third-block .action-btn:hover *,
      .compact-third-block .action-btn:hover span,
      .compact-third-block .action-btn:hover p,
      .compact-third-block .action-btn:hover div,
      a.action-btn:hover,
      a.action-btn:hover * {
        color: #ffffff !important;
        background: #E91E63 !important;
      }

      /* Forza il colore bianco per tutti i discendenti */
      .action-btn:hover *,
      .action-btn:hover::before,
      .action-btn:hover::after {
        color: #ffffff !important;
      }

      /* Stile specifico per link action-btn */
      a.action-btn {
        color: #E91E63 !important;
      }

      a.action-btn:hover {
        color: #ffffff !important;
        background: #E91E63 !important;
      }

      a.action-btn:hover,
      a.action-btn:hover *,
      a.action-btn:hover span,
      a.action-btn:hover::before,
      a.action-btn:hover::after {
        color: #ffffff !important;
      }

      /* Titoli centrati su mobile */
      @media (max-width: 767.98px) {
        .dashboard-card-modern .hub-console-title-main,
        .home-bottom-left-box .hub-console-title-main {
          text-align: center !important;
          margin: 0 auto !important;
          display: block !important;
          width: 100% !important;
        }

        .dashboard-card-modern .hub-console-header,
        .home-bottom-left-box .hub-console-header {
          justify-content: center !important;
        }

        .dashboard-card-modern .hub-console-title-row,
        .home-bottom-left-box .hub-console-title-row {
          justify-content: center !important;
          width: 100% !important;
        }
      }
