.discord-button {
    background-color: #5865f2; /* Discord's default blue color */
    border: none;
    border-radius: 12px;
    color: #ffffff; /* White text color */
    cursor: pointer;
    padding: 8px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    font-family: "Goldman";
    text-decoration: none;
  }

  .title {
    font-family: 'Goldman';
    font-weight: 400;
    font-size: 26px;
  }
  
  .discord-button:hover {
    background-color: #4a47a1; /* Discord's hover blue color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  .discord-button:active {
    background-color: #3a3d5f; /* Discord's active blue color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  .phygtl-button {
    background-image: linear-gradient(to right, #7636FF, #953BAC); /* Phygtl's button */
    border: none;
    border-radius: 12px;
    color: white; /* White text color */
    cursor: pointer;
    padding: 8px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
    font-family: 'Goldman';
  }
  
  .phygtl-button:hover {
    background-color: rgb(210, 236, 52); /* Phygtl's default blue color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  .phygtl-button:active {
    background-color: #d2ec34; /* Phygtl's active blue color */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  }
  
  .disabled-button {
    background-color: #505050; /* Disabled button */
    border: none;
    border-radius: 12px;
    color: #ffffff; /* White text color */
    cursor: not-allowed;
    padding: 8px 16px;
    text-align: center;
    font-size: 14px;
    font-weight: normal;
    text-decoration: none;
  }

  .container-iframe {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
  }

  .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .avatar {
    vertical-align: middle;
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }

  .checkbox-wrapper {
    display: flex;
    gap: 100px; /* Adjust gap as per your spacing needs */
    align-items: center; /* Align checkboxes and text vertically */
  }

  .checkbox-container {
    display: flex;
    align-items: center;
  }
  .checkbox-text {
    margin-left: 8px; /* Adjust margin if needed */
    font-size: small;
  }

  input.whitelisted {
    width: 20px;
    height: 20px;
  }

  .hidden-whitelist {
    display: none;
}

.alert {
  padding: 20px;
  background-color: #f44336;
  color: white;
  opacity: 1;
  transition: opacity 0.6s;
  margin-bottom: 15px;
  width: 100%;
  max-width: 600px;
  border-radius: 25px;
}

.alert.warning {background-color: #D3D3D3; color: black;}

.closebtn {
  margin-left: 15px;
  color: black;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}

.share-container {
  position: absolute;
  width: 100%;
  max-width: 400px;
}

.share-input-url{
      width: 70%;
      padding: 10px 15px; /* Padding accounts for the button inside */
      border: 2px solid #ccc;
      border-radius: 25px;
      font-size: 16px;
      outline: none;
      box-sizing: border-box;
      background-color: transparent;
      color: white;
}

.share-input-url:focus{
  border-color: black;
}

.email-input{
  width: 60%;
  padding: 10px 15px; /* Padding accounts for the button inside */
  border: 2px solid #ccc;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  box-sizing: border-box;
  background-color: white;
  color: black;
}

.email-input:focus{
border-color: black;
}



.index-content {
  font-size: 25px; 
  color: white;
  width: 500px;
  padding-top: 20%;
  
}

.index-content-invite{
  font-size: 20px; 
  color: white;
  width: 500px;
  padding-top: 20%;
}

.email-container {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  
  padding: 5px;
  
}

.email-tag {
  display: flex;
  align-items: center;
  background-color: #e0e0e0;
  font-weight: bold;
  color: black;
  font-size: small;
  border-radius: 3px;
  padding: 5px;
  margin: 5px;
  animation: fadeIn 0.3s ease-in-out;
}

.email-tag span {
  margin-right: 5px;
}

.email-tag .remove-btn {
  background: none;
  border: none;
  color: #ff0000;
  cursor: pointer;
  font-weight: bold;
  margin-left: 5px;
}

.email-container input {
  flex: 1;
  border: none;
  outline: none;
  padding: 5px;
  margin: 5px;
}

.index-discordButton{
  padding: 10px 20px;
  border: none;
  background-color: #5865f2;
  color: white;
  font-size: inherit;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}

.index-discordButton img {
  width: 20px; /* Adjust size */
  height: 20px; /* Adjust size */
  vertical-align: middle; /* Align image with text */
}

.index-discordButton span {
  margin-left: 8px; /* Space between image and text */
}

select {
  font-size: 16px;
}

.blink {
  animation: blink 1.5s ease-in-out;
  animation-iteration-count: infinite;
}

.dashboard-custom-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #d2ec34; /* Matches the neon green color */
  color: #000;
  font-family: 'Goldman';
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  width: 190px; /* Ensures both buttons are the same width */
}

.dashboard-custom-button img {
  margin-right: 10px;
  width: 24px; /* Standardize icon size */
  height: 24px; /* Standardize icon size */
}

.dashboard-discord-custom-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background-color: #5865F2; /* Matches the neon green color */
  color: white;
  font-family: 'Goldman';
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  width: 180px; /* Ensures both buttons are the same width */
}

.dashboard-discord-custom-button img {
  margin-right: 10px;
  width: 24px; /* Standardize icon size */
  height: 24px; /* Standardize icon size */
}

.dashboard-custom-button:hover {
  background-color: #c4d400; /* Slightly darker on hover */
}

.dashboard-discord-custom-button:hover {
  background-color: #7289da; /* Slightly darker on hover */
}


@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes blink {
  from { opacity: 0; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1); }
  to { opacity: 0; transform: scale(0.9); }
}
