body {
  background-color: #88dba3;
  overflow-x: hidden;
  font-family: "Shadows Into Light", serif;
  align-items: center;
  font-weight: 50;
  margin: 0;
  text-align: center;
}

#category-container {
  position: relative;
  display: block;
}

#category-button {
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
  background: transparent; /* Make the button transparent */
  border: transparent;
}

#category-popup {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 350px;
  max-height: 480px; /* Adjust the height as needed */
  overflow-y: auto;
  background-color: white;
  border: 2px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* 3D effect */
  z-index: 1000;
  padding: 10px; /* Add padding for better spacing */
}

#category-popup.hidden {
  display: none;
}

.option-tag {
  display: inline-block;
  padding: 5px 10px; /* Adjust padding for better appearance */
  margin: 5px;

  background-color: #f0f0f0;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s; /* Smooth transition */
}

.option-tag:hover {
  background-color: #e0e0e0;
  transform: scale(1.05); /* Slightly enlarge on hover */
}

#myButton {
  position: absolute;
  right: 8px;
  top: 65px;
  font-size: 10px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4); /* Green background */
  border: none; /* Remove borders */
  color: rgb(79, 197, 120); /* White text */
  padding: 8px 10px; /* Some padding */
  text-align: center; /* Center text */
  text-decoration: none; /* Remove underline */
  display: inline-block; /* Make the button inline */
  font-size: 10px; /* Increase font size */
  margin: 4px 2px; /* Some margin */
  cursor: pointer; /* Pointer/hand icon on hover */
  border-radius: 8px; /* Rounded corners */
  transition: background-color 0.3s; /* Smooth transition for background color */
}

#myButton:hover {
  background-color: rgba(0, 0, 0, 0.5); /* Darker green on hover */
}

#category-select {
  width: auto;
  padding: 18px;
  padding-top: 0px;
  padding-bottom: 0px;
  font-size: 14px;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("icon/dropdown.png") no-repeat right transparent;
  background-size: 20px; /* Adjust the size as needed */
}

/* Adding some margin to the bottom for spacing */
#category-select option {
  background-color: rgb(255, 255, 255); /* Your background color */
  padding: 0px;
  font-size: 16px;
}

#sliderButton {
  position: fixed;
  bottom: 40px;
  right: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#sliderButton img {
  width: 50px;
  height: 50px;
}

.slider {
  position: fixed;
  bottom: 10px;
  right: 20px;
  width: 200px;
  height: auto;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: bottom 0.3s, opacity 0.3s;
  opacity: 0;
  visibility: hidden;
  padding: 15px;
  font-size: 17px;
  text-align: left;
  border-radius: 10px;
}

.slider.active {
  bottom: 120px;
  opacity: 1;
  visibility: visible;
}

.social-buttons {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 0px;
}

.social-buttons a {
  background-color: #f1f1f1;
  border-radius: 5px;
  padding: 5px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0px;
}

.social-buttons a img {
  width: 24px;
  height: 24px;
}

.social-buttons a span {
  flex-grow: 1;
}

.bottom-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 5px;
}

.bottom-icons a {
  width: 40px;
  height: 40px;
  background-color: (0) rgba(0);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: white;
}

.bottom-icons a img {
  width: 30px;
  height: 30px;
}

.left {
  text-align: left;
}
.right {
  text-align: right;
}

.center {
  text-align: center;
  align-items: center;
}
.social-buttons a img {
  width: 30px;
  height: 30px;
}

.social-buttons a span {
  flex-grow: 1;
}

.group_card_container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.group-card {
  margin-bottom: 20px;
  position: relative;
  border: 2px solid transparent;
  border-radius: 5px;
  background: (0);
  display: flex;
  align-items: center;
  padding: 10px;
  justify-content: space-between;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.whatsapp-card {
  animation: whatsapp-border-animation 1s infinite;
}

.telegram-card {
  animation: telegram-border-animation 1s infinite;
}

.instagram-card {
  animation: instagram-border-animation 1s infinite;
}

@keyframes whatsapp-border-animation {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: #25d366;
  }
  100% {
    border-color: transparent;
  }
}

@keyframes telegram-border-animation {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: #004f7a;
  }
  100% {
    border-color: transparent;
  }
}

@keyframes instagram-border-animation {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: #e1306c;
  }
  100% {
    border-color: transparent;
  }
}

.seoquake-nofollow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  padding: 5px 20px;
  border-radius: 2px;
  flex-shrink: 0;
  transition: all 0.3s ease-in-out;
  color: white !important;
}

.seoquake-nofollow i {
  margin-right: 5px;
}

.whatsapp-card .seoquake-nofollow {
  background: #25d366;
}

.telegram-card .seoquake-nofollow {
  background: #004f7a;
}

.instagram-card .seoquake-nofollow {
  background: #e1306c;
}

.seoquake-nofollow:hover {
  transform: scale(1.05);
}

#image-container {
  position: relative;
  display: inline-block;
}
#img1 {
  width: 300px; /* initial width */
}
.btn {
  position: absolute;
  top: 10px;
  background-color: (0, 0, 0, 0.1);
  border: 1px solid black;
  padding: 5px;
  cursor: pointer;
}
.btn.fullscreen {
  left: 10px;
}
.btn.back-screen {
  right: 10px;
}

.round-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; /* Center align icon */
  background: linear-gradient(to right, #88dba3, #6fe396);

  border: 2px solid #ccc;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  flex-direction: column;
  transition: background-color 0.3s, transform 0.3s;
  overflow: hidden; /* Ensure no content overflows the icon */
  box-sizing: border-box; /* Include padding and border in the width and height */
}

.round-icon:hover {
  background-color: #2980b9;
  transform: scale(1.1);
  color: #fff; /* Change color on hover */
}

.round-icon .icon {
  font-size: 24px;
  color: #000; /* Ensure the icon is visible */
}

.download-btn,
.share-btn {
  display: none;
  position: absolute;
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 20px; /* Adjust the size of the icons */
}

.download-btn {
  right: 1px;
  bottom: 15px; /* Adjust this value if needed */
}

.share-btn {
  right: 1px; /* Adjust this value if needed */
  bottom: 30px; /* Adjust this value if needed */
}

.download-btn img,
.share-btn img {
  width: 15px; /* Adjust icon size if needed */
  height: 15px; /* Adjust icon size if needed */
}

.round-icon:hover .download-btn,
.round-icon:hover .share-btn {
  display: block;
}

.video-container {
  position: relative;
  max-width: 600px;
  min-width: 325px;
  aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
  margin: 0 auto; /* Center the video container */
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Container for the image and icon */
.image-container {
  position: relative;
  display: inline-block;
}

/* shorts youtube */

.container {
  display: flex;
  flex-wrap: wrap;
}

.fixed-search-container {
  position: fixed;
  top: 0px;
  width: 100%;
  background-color: #f6fff6;
  z-index: 999;
  padding: 10px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.fixed-search-container .search-box,
.fixed-search-container .search-icon {
  margin: 0 10px;
}

h1 {
  color: #0e455e;
  margin-top: 10px; /* Adjust for fixed search box */
  margin-bottom: 10px;
  font-size: 25px;
}

.hadder_section2 {
  background-color: #88dba3; /* Light blue background color */
  border-radius: 8px;
  color: #333; /* Dark text color */
  padding: 2px;
  padding-bottom: 0px;
  border-radius: 8px; /* Adds rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-section {
  background-color: #ffffff; /* Light blue background color */
  color: #333; /* Dark text color */
  padding: 20px;
  border-radius: 5px; /* Adds rounded corners */
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  margin: 25px auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-section2 {
  background-color: #cdcbcb; /* Light blue background color */
  color: #333; /* Dark text color */
  padding: 20px;
  border-radius: 8px; /* Adds rounded corners */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.search-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.search-box {
  padding: 8px;
  border-radius: 15px;
  border: 2px solid #eaeaea;
  outline: none;
  width: 250px;
}

#notFoundMessage {
  display: none;
  position: fixed;
  top: 31%;
  left: 45%;
  transform: translate(-50%, -50%);
  background-color: #e6392c;
  color: white;
  padding: 10px;
  border-radius: 4px;
  font-size: 12px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.slide-in {
  transform: translateX(-50%) translateY(0);
}

.control-btn {
  position: absolute;
  right: 5px;
  top: 165px;
  transform: translateY(-10%);
  background-color: #c33d3d;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 8px 12px;
  margin: 10px;
  font-size: 10px;
  cursor: pointer;
}

.control-btn2 {
  position: absolute;
  right: 60px;
  top: 165px;
  transform: translateY(-10%);
  background-color: #c33d3d;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 8px 12px;
  margin: 10px;
  font-size: 10px;
  cursor: pointer;
}

.custom-button {
  display: inline-block;
  padding: 12px 40px;
  font-size: 22px;
  color: white;
  background-color: #4caf50;
  border: 6px solid #ccc;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.custom-button:hover {
  background-color: #45a049;
}
.custom-button1 {
  display: inline-block;
  padding: 12px 50px;
  font-size: 15px;
  color: rgb(0, 0, 0);
  background-color: #50b823;
  border: 6px solid #ccc;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
.custom-button1:hover {
  background-color: #45a049;
}

.custom-button2 {
  display: inline-block;
  padding: 12px 50px;
  font-size: 15px;
  color: rgb(0, 0, 0);
  background-color: #d6ad45;
  border: 6px solid #ccc;
  border: none;
  border-radius: 5px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.custom-button2:hover {
  background-color: #da953b;
}
@keyframes rainbow {
  0% {
    color: red;
  }
  14% {
    color: orange;
  }
  28% {
    color: yellow;
  }
  42% {
    color: green;
  }
  57% {
    color: blue;
  }
  71% {
    color: indigo;
  }
  85% {
    color: violet;
  }
  100% {
    color: red;
  }
}

@keyframes blinking {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

.rainbow-blink {
  font-size: 10px;
  animation: rainbow 3s linear infinite, blinking 0s step-start infinite;
}

.search-icon {
  background-color: #c33d3d;
  border: 1px solid #ccc;
  border-radius: 10px;
  border-left: none;
  padding: 8px;
  cursor: pointer;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.sidenav {
  height: 100%;
  width: 240px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  padding-top: 10px;
  transition: 0.5s;
}

.sidenav .powered {
  position: absolute;
  bottom: 50px;
  left: 15%;
  color: #818181;
  font-size: 16px;
}
.sidenav.hidden {
  display: none;
  width: 0;
}

.sidenav a {
  padding: 5px 5px 5px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav.open {
  width: 280px;
}

.main-content {
  background-color: #e0ebcd;
  margin: 0;
  margin-left: 260px; /* Same as the width of the sidenav */
  padding: 12px;
  transition: margin-left 0.5s;
}

.main-content.expanded {
  margin-left: 0;
}

.fixed-search-container {
  top: 0;
  width: 100%;
  z-index: 999;
}

.toggle-btn {
  position: fixed;
  top: 15px;
  left: 15px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: left 0.5s, transform 0.5s;
  animation: moveButton 3s infinite alternate;
}

.toggle-btn img {
  width: 40px; /* Adjust the width to fit your needs */
  height: 50px; /* Adjust the height to fit your needs */
  transform: scale-x(-1); /* This flips the icon horizontally */
}

@keyframes moveButton {
  0% {
    left: 15px;
  }
  100% {
    left: 50px;
  }
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.overlay.show {
  z-index: 2;
  opacity: 1;
}

.sidenav.hidden {
  width: 0;
  padding: 0;
}

.main-content.expanded {
  margin-left: 0;
}

.toggle-btn.hidden {
  left: 10px;
}

.icons-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px; /* Adjust the spacing between icons as needed */
}

/* For desktop screens */
@media only screen and (min-width: 1024px) {
  .icons-container {
    flex-direction: row; /* Ensure icons are in a single line for desktop */
  }

  .round-icon {
    flex: 0 1 calc(14.28% - 10px); /* Adjust width to fit 7 icons per line */
    max-width: 120px; /* Adjust as needed */
    height: 120px; /* Adjust as needed */
    margin: 10px; /* Adjust as needed */
  }

  /* For displaying 5-7 icons in one line */
  .icons-container .round-icon:nth-child(1n) {
    flex: 0 1 calc(20% - 10px); /* Adjust width to fit 5 icons per line */
  }

  /* Adjust the size of the icons inside the round-icon */
  .round-icon i {
    font-size: 36px; /* Adjust the icon size as needed */
  }

  /* Adjust text size within the round-icon */
  .round-icon .text {
    font-size: 16px; /* Adjust text size as needed */
  }

  /* Adjust emoji icon size */
  .round-icon .emoji {
    font-size: 36px; /* Adjust emoji icon size as needed */
  }

  /* Adjust size of download and share buttons */
  .download-btn {
    font-size: 24px; /* Adjust button icon size as needed */
    width: 40px; /* Adjust button size as needed */
    height: 40px; /* Adjust button size as needed */
    right: 10px; /* Position adjustments for the buttons */
    bottom: 20px; /* Position adjustments for the buttons */
  }
  .share-btn {
    font-size: 24px; /* Adjust button icon size as needed */
    width: 45px; /* Adjust button size as needed */
    height: 45px; /* Adjust button size as needed */
    right: 10px; /* Position adjustments for the buttons */
    top: 30px; /* Position adjustments for the buttons */
  }

  .download-btn img,
  .share-btn img {
    width: 24px; /* Adjust icon size within the button as needed */
    height: 24px; /* Adjust icon size within the button as needed */
  }

  /* Additional adjustments for the share button */
  .share-btn {
    bottom: 20px; /* Adjust the vertical position of the share button */
  }
}

/* For mobile-friendly adjustments */
@media only screen and (max-width: 1024px) {
  .icons-container {
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: row; /* Change back to row for mobile */
  }

  .round-icon {
    width: 82px;
    height: 82px;
    margin: 0px;
  }
}

.loading-icon {
  border: 6px solid #f3f3f3;
  border-top: 6px solid #3498db;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  animation: spin 1s linear infinite;
  display: none;
  margin: auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.text {
  font-size: 12px;
  margin-top: 5px;
  text-align: center;
  color: #000;
  font-weight: bold;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  display: none;
}

.song-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.song {
  width: 100px;
  height: 100px;
  margin: 5px;
  background-color: #c3c3c3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
}

.song-container .song:nth-child(n + 6) {
  display: none;
}

/* Mobile-friendly adjustments */
@media only screen and (max-width: 600px) {
  .sidenav {
    width: 100%;
    transition: transform 0.3s ease;
    height: auto;
    display: none;
  }

  .sidenav .powered {
    display: none;
  }

  .sidenav.hidden {
    display: block;
    width: 100%;
    height: auto;
  }

  .sidenav a {
    padding: 5px;
    text-align: center;
    font-size: 18px;
    width: 100%;
    float: 100%;
  }

  .main-content {
    margin-left: 0;
  }

  .toggle-btn {
    position: fixed;
    top: 20px;
    left: 10px;
  }

  .icons-container {
    flex-wrap: wrap; /* Change to wrap for mobile */
    justify-content: center;
  }
}
