
.copy-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.copy-btn:hover {
  background-color: #45a049;
}

.copy-notification {
  margin-top: 10px;
  color: green;
  font-size: 16px;
  font-weight: 500;
}


    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Roboto', sans-serif;
      background-color: #f4f7fa;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      height: 100vh;
      color: #333;
    }

    header {
      background-color: #4CAF50;
      color: white;
      text-align: center;
      padding: 30px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
    }

    header h1 {
      margin: 0;
      font-size: 36px;
      font-weight: 500;
    }

    header p {
      font-size: 18px;
      margin-top: 10px;
      font-weight: 300;
    }

    .feature-section {
      background-color: #ffffff;
      padding: 40px 20px;
      text-align: center;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      margin: 40px 0;
      border-radius: 12px;
    }

    .feature-section h2 {
      color: #4CAF50;
      font-size: 32px;
      margin-bottom: 30px;
    }

    .feature-section .features {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
    }

    .feature-section .feature {
      width: 200px;
      margin: 20px;
      text-align: center;
    }

    .feature-section .feature img {
      width: 50px;
      height: 50px;
      margin-bottom: 15px;
    }

    .feature-section .feature h3 {
      font-size: 22px;
      color: #4CAF50;
      margin-bottom: 10px;
    }

    .feature-section .feature p {
      font-size: 16px;
      color: #555;
    }

    .container {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-grow: 1;
      padding: 20px;
      text-align: center;
    }

    .url-box {
      background-color: white;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      width: 100%;
      max-width: 600px;
    }

    .url-box h2 {
      margin-bottom: 20px;
      font-size: 28px;
      color: #4CAF50;
    }

    .url-box input[type="text"] {
      width: 100%;
      padding: 15px;
      font-size: 16px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .url-box button {
      width: 100%;
      padding: 15px;
      background-color: #4CAF50;
      color: white;
      font-size: 18px;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .url-box button:hover {
      background-color: #45a049;
    }

    .url-box .shortened-link {
      margin-top: 20px;
      font-size: 18px;
      color: #333;
    }

    .url-box .shortened-link a {
      color: #4CAF50;
      text-decoration: none;
      font-weight: 500;
    }

    .url-box .shortened-link a:hover {
      text-decoration: underline;
    }

    footer {
      background-color: #333;
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 16px;
    }

    footer a {
      color: #4CAF50;
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    /* SEO Content Styling */
    section {
      padding: 40px 20px;
      max-width: 900px;
      margin: 0 auto;
      background-color: #fff;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      border-radius: 12px;
    }

    section h2,
    section h3 {
      color: #4CAF50;
      font-size: 28px;
      margin-bottom: 20px;
    }

    section ul {
      list-style-type: none;
      padding-left: 20px;
    }

    section ul li {
      font-size: 16px;
      color: #555;
      margin-bottom: 10px;
    }



/* Scoped CSS for specific container */
.custom-container * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  
}


.custom-container body {
  font-family: 'Roboto', sans-serif;
  background-color: #f4f7fa;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  color: #333;
}

.custom-container header {
  background-color: #4CAF50;
  color: white;
  text-align: center;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.custom-container header h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 500;
}

.custom-container header p {
  font-size: 18px;
  margin-top: 10px;
  font-weight: 300;
}

.custom-container nav {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 15px;
  
  animation: slide-in 1s ease-out;
  z-index: 1000;
}

.custom-container ul {
  display: flex;
  margin: 0;
  padding: 0 30px;
  list-style-type: none;
border: 2px solid #EBECF1;
  border-radius: 30px;
}

.custom-container li:not(:last-child) {
  margin-right: 40px;
}

.custom-container li {
  border: 2px solid transparent;
  border-radius: 5px;
  padding: 10px;
  transition: background 0.2s;
}

.custom-container a {
  color: white;
  text-decoration: none;
  transition: color 0.2s;
}
.custom-container a:hover {color:black;}

.custom-container ul ul {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  display: block;
  margin: 20px -12px;
  padding: 0;
  background: #4CAF50;
  color: black;
  transition: opacity 0.2s, visibility 0.2s;
}

.custom-container ul ul li {
  margin: -2px 0 0 -2px;
  width: calc(100% - 20px);
  line-height: 1.7;
}

.custom-container ul ul li a {
  color: #2375D8;
}

.custom-container li:hover ul {
  visibility: visible;
  opacity: 1;
  box-shadow: 0px 3px 5px 2px #EBECF1;
}

.custom-container li:hover ul li a {
  color: #F9F8FD;
}

.custom-container li:hover ul li a:hover {
  color: black;
}

@keyframes slide-in {
  0% {
    top: -50px;
  }
  40% {
    top: 20px;
  }
  70% {
    top: 10px;
  }
  100% {
    top: 15px;
  }
}

.custom-container .hamburger {
  display: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: fixed;
  right: 15px;
  top: 15px;
  color: green;
}

.custom-container .hamburger div {
  background-color: white;
  height: 3px;
  width: 100%;
  margin: 5px 0;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .custom-container li a {
    color: green;
  }

  .custom-container nav {
    border: none;
  }

  .custom-container li {
    border: none;
  }

  .custom-container nav {
    left: 15px;
    transform: none;
    width: calc(100% - 30px);
  }

  .custom-container ul {
    display: none;
    flex-direction: column;
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: #F9F8FD;
    border-radius: 10px;
    box-shadow: 0px 3px 5px 2px #EBECF1;
    top: 50px;
    left: 0;
    z-index: 999;
  }

  .custom-container li {
    width: 100%;
    text-align: center;
  }

  .custom-container li:not(:last-child) {
    margin-bottom: 15px;
  }

  .custom-container .hamburger {
    display: block;
  }

  .custom-container .hamburger.open div:nth-child(1) {
    transform: rotate(45deg);
    top: 7px;
  }

  .custom-container .hamburger.open div:nth-child(2) {
    opacity: 0;
  }

  .custom-container .hamburger.open div:nth-child(3) {
    transform: rotate(-45deg);
    top: -7px;
  }

  .custom-container ul.active {
    display: flex;
  }
}

@media (max-width: 480px) {
  .custom-container li {
    padding: 8px;
  }

  .custom-container ul ul li {
    padding: 8px;
  }
}