  .indexation-box {
  width: 100%;
  max-width: 300px;
  border: 1px solid #999;
  background-color: #BCD9F0;
  padding: 10px;
  margin-bottom: 30px;
}

.index-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: left;
}

.index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}

.index-item {
  border: 1px solid #000;
  padding: 5px;
  background-color: #BCD9F0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

.index-item img {
  max-width: 100%;
  height: auto;
}
.social-sidebar {
  width: 220px;
  background-color: transparent;
  padding: 15px;
  border: none;
  font-family: Arial, sans-serif;
}

.social-sidebar h3 {
  font-size: 20px;
  margin-bottom: 20px;
  text-align: center;
  font-weight: bold;
  color: #333;
}

.social-logos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.social-logos li {
  text-align: center;
  position: relative;
}

.social-logos li img {
  max-height: 35px;
  max-width: 90%;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 5px;
}

/* Hover effect */
.social-logos li img:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Tooltip */
.social-logos li::after {
  content: attr(data-title);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #222;
  color: #fff;
  padding: 6px 10px;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 4px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 999;
}

.social-logos li:hover::after {
  opacity: 1;
  top: 115%;
}
/* Target the specific div with class 'stat' and center the text */
.stat {
    text-align: center !important;
    font-size: 36px;  /* Adjust as needed */
    font-weight: bold;
    color: #2c3e50;  /* Adjust the color as needed */
    margin: 20px auto;  /* Optional: Adds margin for spacing */
}



