.social-feed-container {
  z-index: 3;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  
  /* Add a subtle transition when the container is hovered over */
  transition: box-shadow 0.3s ease;
  
  /* Add a subtle shadow to the container when it is hovered over */
  &:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  }
}

.is-builder .mbr-social-feed {
  min-height: 125px;
}

.mbr-social-feed {
  text-align: center;
  position: relative;
  background-size: cover;
  padding: 20px;
  
  /* Add a fade-in animation when the element is loaded */
  animation: fade-in 0.5s ease-in-out;
}

.social-feed-container-loading {
  margin: 0 auto;
  display: none;
}

.is-builder .loading .social-feed-container-loading {
  display: block;
}

.social-feed-element iframe {
  width: 100%;
  height: 300px;
  text-align: center;
  margin: 0 auto;
  display: block;
}

@media (max-width: 768px) {
  .social-feed-element {
    margin: 0 !important;
  }
}

/* Keyframes for the fade-in animation */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.text-box {
  /* Set the size and shape of the text box */

  border-radius: 20px;
  width: auto;
  height: auto;
  display: inline-block;

  /* Add some padding and a transparent background color */
  padding: 16px;
  background-color: transparent;

  /* Add an outline around the text box */
  border: 2px solid #000;

  /* Add some spacing and positioning */
  margin: 10px;
  display: inline-block;
}
.text-box1 {
  /* Set the size and shape of the text box */

  border-radius: 111px;
  width: 70px;
  height: 30px;
  display: inline-block;

  /* Add some padding and a transparent background color */
  padding: 7px;
  background-color: transparent;

  /* Add an outline around the text box */
  border: 2px solid #000;

  /* Add some spacing and positioning */
  margin: 7px;
  display: inline-block;
}

.text-box5 {
  /* Set the size and shape of the text box */

  border-radius: 111px;
  width: 70px;
  height: 30px;
  display: inline-block;

  /* Add some padding and a transparent background color */
  padding: 0px;
  background-color: transparent;

  /* Add an outline around the text box */
  border: 2px solid #000;

  /* Add some spacing and positioning */
  margin: 7px;
  display: inline-block;
}



