/* Reset styles for the whole document */
body {
    margin: 0;
    padding: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    /*background-color: rgb(14, 14, 18); */
    background-image: url('bg.png');
}

:root {
    --clr-highlight: yellow; /* Highlight color for the active link */
    --clr-accent: blue;/
}

:root {
    --clr-neon: hsl(253, 100%, 54%);
    --clr-sex: linear-gradient(45deg, rgb(39, 9, 209), rgb(228, 16, 199));
}


.sidebar a.active {
    position: relative;
    color: rgb(230, 230, 230);
    background-color: transparent;
    border: none;
    padding: 10px 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1; /* Ensure the pseudo-element is behind text */
}

.sidebar a.active::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -20px;
    right: 20px; /* Retract background 20px from the right */
    background-color: rgb(13,13,15);
    border-radius: 5px;
    z-index: -1;
}


/* Button styles */
.buttons {
    font-size: 1.2rem;
    color: white;
    background-color: var(--clr-neon);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

/* Sidebar styles */
.sidebar {
    height: 100%;
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(9, 9, 11);
    color: rgb(255, 255, 255);
    padding-top: 20px;
    border-right: 0.5px solid rgb(25,25,25);
}

.sidebar a {
    padding: 5px 10px;
    text-decoration: none;
    margin-top: 5%;
    font-size: 25px;
    color: rgb(230, 230, 230);
    display: flex;
    margin-left: 20%;
    transition: color 0.3s ease-in-out;
}

.sidebar a img {
        width: 17%;
        position: left;
        margin-left: -16%;
        margin-top: -1%;
        vertical-align: middle;
        margin-right: 5%;
}

.sidebar hr {
    width: 100%;
    height: 1px;
    color: rgb(25,25,25);
    background-color: rgb(25,25,25);
    border: none;
}

.sidebar a:hover{
    color: white;
}

.sidebar img {
    width: 80%; /* Adjust the width as needed for a larger image */
    height: 100%; /* Adjust the height as needed for a larger image */
    border-radius: 10%; /* Add rounded corners */
    margin-top: 12%;
    margin-left: 12%;
}



/* Content area styles */
.content {
    margin-left: 250px;
    padding: 20px;
}

/* Logo style */
.logo {
    margin-left: 5%;
    padding: 4px 8px 8px;
}


/* Add styles for the boxes in the content area */
.box-container {
    display: flex; 
}

.box {
  position: relative;
    flex: 1; /* Make the boxes grow to fill available space equally */
    background-color: rgb(17, 17, 20);
    padding: 20px;
    margin-right: 10px;
    color: white;
    width: calc(50% - 10px); /* Set the width of each box */
    text-align: left;
    border-radius: 10px;
    border: 1px solid rgb(25,25,25);
}

.box-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.box-header img {
    width: 60px; /* Adjust the width as needed for a larger image */
    height: 60px; /* Adjust the height as needed for a larger image */
    border-radius: 10%; /* Add rounded corners */
    margin-right: 10px;
}


.box-content p {
    margin: 0;
    color: rgb(200,200,200);
}

.box:hover .glow-effect {
  opacity: 1;
}


.script-box {
  position: relative;
  margin-top: 10px;
  flex: 1;
  background-color: rgb(17,17,20);
  padding: 10px;
  margin-right: 10px;
  color: white;
  width: calc(50% - 10px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid rgb(25,25,25);
}

.glow-effect {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.03), transparent 50%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.script-box:hover .glow-effect {
  opacity: 1;
}



.script-box-header {
    display: flex;
    align-items: center;
}

.script-box-header img {
    width: 60px;
    height: 60px;
    border-radius: 10%;
    margin-right: 10px;
}

.script-box-content {
    gap: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.buttonq {
    width: 150px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    background: red;
    border: none;
    border-radius: 5px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.15);
    background: #e62222;
   }
   
   .buttonq, .buttonq span {
    transition: 200ms;
   }
   
   .buttonq .text {
    transform: translateX(35px);
    color: white;
    font-weight: bold;
   }
   
   .buttonq .icon {
    position: absolute;
    border-left: 1px solid #c41b1b;
    transform: translateX(110px);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
   }
   
   .buttonq svg {
    width: 15px;
    fill: #eee;
   }
   
   .buttonq:hover {
    background: #ff3636;
   }
   
   .buttonq:hover .text {
    color: transparent;
   }
   
   .buttonq:hover .icon {
    width: 150px;
    border-left: none;
    transform: translateX(0);
   }
   
   .buttonq:focus {
    outline: none;
   }
   
   .buttonq:active .icon svg {
    transform: scale(0.8);
   }

   .Btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100px;
    height: 40px;
    border: none;
    padding: 0px 20px;
    background-color: rgb(13, 142, 233);
    color: white;
    font-weight: 500;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 5px 5px 0px rgb(5, 100, 200);
    transition-duration: .3s;
  }
  
  .svg {
    width: 13px;
    position: absolute;
    right: 0;
    margin-right: 20px;
    fill: white;
    transition-duration: .3s;
  }
  
  .Btn:hover {
    color: transparent;
  }
  
  .Btn:hover svg {
    right: 43%;
    margin: 0;
    padding: 0;
    border: none;
    transition-duration: .3s;
  }
  
  .Btn:active {
    transform: translate(3px , 3px);
    transition-duration: .3s;
    box-shadow: 2px 2px 0px rgb(140, 32, 212);
  }

.progress-bar {
    background-color: rgb(9,9,11);
    height: 7%;
    border-radius: 5px;
    margin-top: 10px;
    position: relative;
}

.progress-fill-a {
  width: 0%;
    background-color: var(--clr-neon);
    height: 100%;
    border-radius: 5px;
    transition: width 1s ease-in-out;
    background-image: linear-gradient(135deg, #006466 24%, #186785 50%, #186785 79%, #316AA4 100%);
}

.progress-fill-a2 {
  width: 0%;
    background-color: var(--clr-neon);
    height: 100%;
    border-radius: 5px;
    transition: width 1s ease-in-out;
    background-image: linear-gradient(45deg, rgb(39, 9, 209), rgb(228, 16, 199));
}

.progress-fill-a3 {
    background-color: var(--clr-neon);
    height: 100%;
    border-radius: 5px;
    transition: width 0.3s ease-in-out;
    background-image: linear-gradient(135deg, #2B692E, #1fc428);
}




.overlay {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); /* black with 50% opacity */
  z-index: 999; /* should be lower than the modal */
}


.script-form {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  transform-origin: center;

  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;

  background: rgba(9, 9, 11, 0.35);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);

  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  z-index: 1000;
  min-width: 200px;
  text-align: center;
  color: white;
}

.script-form.show {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}



.script-form h2 {
    font-size: 2rem;
    color: white;
    margin-bottom: 20px;
}

.script-form form {
    display: inline-block;
    text-align: center;
}

.script-form form label {
    display: block;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 10px;
    position: relative;
    top: -20px;
}

.script-form form input[type="text"],
.script-form form input[type="password"] {
    width: 80%;
    padding: 10px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    margin-bottom: -100px;
}

.script-form select {
    position: relative;
    top: -20px;
    width: 115%;
    margin-left: -8%;
    margin-bottom: -2px;
    padding: 10px;
    background-color: rgba(9,9,11);
    color: white;
    border-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 0.15em solid #ccc;
}

.scriptupload {
    appearance: none;
    width: 500px;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.1);
}

option {
    background-color: #ffffff; /* Background color of options */
    color: rgb(0, 0, 0); /* Text color */
    padding: 10px; /* Inner spacing for readability */
  }
  
.script-form .form-group button {
    margin-top: 10px;
    font-size: 1.2rem;
    color: white;
    background-color: var(--clr-neon);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.loader-form {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0.8);
      transform-origin: center;
      
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, transform 0.3s ease;

      background-color: rgb(9, 9, 11);
      padding: 20px;
      border-radius: 10px;
      border: 0.5px solid rgb(25,25,25);
      z-index: 1000;
      min-width: 400px;
      min-height: 250px;
      text-align: center;
    }

    .loader-form.show {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, -50%) scale(1);
    }


@keyframes animate8345 {
  0%,100% {
    filter: hue-rotate(0deg);
  }

  50% {
    filter: hue-rotate(360deg);
  }
}

.loadertext {
  color: rgb(0, 0, 0);
  background: linear-gradient(to right, #2d60ec, #3ccfda);
  font-size: 30px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: animate8345 9s linear infinite;
  font-weight: bold;
  margin-top:10%;
}

.loader {
  margin-top: 15%;
  display: flex;
  justify-content: center;
  align-items: flex-start; 
  width: 100%;
  height: 60px;
  position: relative;
}

.loader::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border-top: 2px solid #8900FF;
  border-right: 2px solid transparent;
  animation: spinner8217 0.8s linear infinite;
}

@keyframes spinner8217 {
  to {
    transform: rotate(360deg);
  }
}



.input-container {
    position: relative;
    margin: 40px auto;
    width: 85%;
    color: #ccc;
  }
  
  .input-container input[type="text"] {
    font-size: 20px;
    width: 100%;
    border: none;
    border-bottom: 2px solid #ccc;
    padding: 5px 0;
    background-color: transparent;
    outline: none;
    color: #ccc;
  }
  
  .input-container .label {
    position: absolute;
    top: 0;
    left: 0;
    color: #ccc;
    transition: all 0.3s ease;
    pointer-events: none;
  }
  
  .input-container input[type="text"]:focus ~ .label,
  .input-container input[type="text"]:valid ~ .label {
    top: -20px;
    font-size: 16px;
    color: #ccc;
  }
  
  .input-container .underline {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background-color: #ccc;
    transform: scaleX(0);
    transition: all 0.3s ease;
  }
  
  .input-container input[type="text"]:focus ~ .underline,
  .input-container input[type="text"]:valid ~ .underline {
    transform: scaleX(1);
    color: #ccc;
  }

  
  
  .buttonu {
    cursor: pointer;
    width: 115%;
    height: 3em;
    border-radius: 8px;
    border: 0.15em solid #ccc;
    color: #ccc;
    background-color: #00000000;
    transition: all 0.5s ease;
    margin-left: -8%;
    margin-bottom: 5px;
  }
  
  .buttonu .text {
    display: none
  }
  
  .buttonu:hover>.text {
    display: block;
  }
  
  .buttonu:hover>svg {
    display: none;
  }
  
  .buttonu:hover {
    color: #fff
  }
  
.buttonu svg {
    width: 1.5em;
    margin-top: 3px;
  }

.script-box {
  width: auto;
  margin-right: 0;
}

.script-copy h2 {
  margin: 0;
}

.script-copy p {
  margin: 4px 0 0;
  color: rgb(120, 126, 160);
}

.progress-bar {
  height: 10px;
}
  



  

  
