@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,700;0,900;1,500&display=swap');
* {
  
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

body {
  margin: 0px;
  padding: 0px;
  height: 100vh;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://i.ibb.co/kJKgLy0/90595.jpg');
  background-size: cover;
  opacity: 1;
  z-index: -1;
}

.container {
  position: relative;
  max-width: 100%;
  height: 100vh;
  margin:0px 0px;
  padding: 0px;
  /* From https://css.glass */
  background: rgba(21, 94, 163, 0.2);
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 13.5px );
  -webkit-backdrop-filter: blur( 13.5px );
  border-radius: 35px;
}

h1 {
  font-size: 15px;
  color: #020024;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.firstline{
  display: flex;
}

.animate-charcter
{
  text-transform: uppercase;
  background-image: linear-gradient(
    -225deg,
    #00d4ff 0%,
    #020024 29%,
    #090979 67%,
    #00d4ff 100%
  );
  background-size: auto auto;
  background-clip: border-box;
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
      font-size: 15px;
      text-align: center;
      padding-right: 450px;
      font-weight: bolder;
      
      
}

#evenPercentage {
  color: white;
  font-size: 10px;
	border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
	padding: 5px;
	background: #090979;
  padding-right: 5px;
  cursor: pointer;
  
}

#oddPercentage {
  color: white;
  font-size: 10px;
  border-top-right-radius: 5px;
	border-bottom-right-radius: 5px;
	padding: 5px;
	background: #f44336;
  padding-left: 5px;
  cursor: pointer;
  
  
}

.custom-edgeshape{
  --border: 1px;    /* the border width */
  --slant: 1em;   /* control the slanted corners */
  --color: #ffffff; /* the color */
  padding: 0.4em 1.2em;
  border: none; 
  color: var(--color);
  background: 
     linear-gradient(to bottom left,var(--color)  50%,#0000 50.1%) top right,
     linear-gradient(to top   right,var(--color)  50%,#0000 50.1%) bottom left;
  background-size: calc(var(--slant) + 1.3*var(--border)) calc(var(--slant) + 1.3*var(--border));
  background-repeat: no-repeat;
  box-shadow:
    0 0 0 200px inset var(--s,#0000),
    0 0 0 var(--border) inset var(--color);
  clip-path: 
      polygon(0 0, calc(100% - var(--slant)) 0, 100% var(--slant),
              100% 100%, var(--slant) 100%,0 calc(100% - var(--slant))
             );
}

p {
  color: #ffffff  ;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
}

.chartContainer{
  height: 62.5vh;
  width: auto;
  margin-bottom: 2px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  border-radius: 10px;

}

.chartcont{
  height: auto;
  width: auto;
  margin-bottom: 2px;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  
  border: 1px solid #020024e0;
  --border: 2.5px;    /* the border width */
  --slant: 1em;   /* control the slanted corners */
  --color: #1a1a3b; /* the color */
  padding: 0.4em 1.2em;
  border: none; 
  cursor: crosshair;
  color: var(--color);
  background: 
     linear-gradient(to bottom left,var(--color)  50%,#0000 50.1%) top right,
     linear-gradient(to top   right,var(--color)  50%,#0000 50.1%) bottom left;
  background-size: calc(var(--slant) + 1.3*var(--border)) calc(var(--slant) + 1.3*var(--border));
  background-repeat: no-repeat;
  box-shadow:
    0 0 0 200px inset var(--s,#0000),
    0 0 0 var(--border) inset var(--color);
  clip-path: 
      polygon(0 0, calc(100% - var(--slant)) 0, 100% var(--slant),
              100% 100%, var(--slant) 100%,0 calc(100% - var(--slant))
             );

}
#evenOddChart{
  cursor: crosshair;
  height: 10px;
}

.logo {
  width: 100px;
  height: 100px;
}

.input-container {
  display: flex;
  align-items: center;
  margin-bottom: 0px;
  margin-top: 0px;
}

.input-container select,
.input-container input {
  display: inline-block;
  margin-right: 20px;
}

#symbolInput {
  padding: 5px;
  font-size: 10px;
  font-family: 'Poppins', sans-serif;
  color: #ffffffe0;
  border: 2.5px solid #283876;
  width: 20%;
  margin-bottom: 3px;
  cursor: pointer;
}

#digitsInput {
  padding: 5px;
  font-size: 10px;
  border: 2.5px solid #283876;
  width: 10%;
  margin-bottom: 3px;
  font-size: 10px;
  font-family: 'Poppins', sans-serif;
  color: #ffffffe0;
  cursor: pointer;
}

.small-buttons-container {
  display: inline-block;
}

.medium-buttons-container {
  display: inline-block;
  margin-left: 30px;
  margin-right: 30px;
}

.small-button {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  border: none;
  background-color: #283876;
  color: #ffffff;
  cursor: pointer;
  border-radius: 3px;
}

.small-button.clicked {
  background-color: #ddd;
  color: #000000;
}

.small-button:hover {
  background-color: #ddd;
  color: #000000;
}

.medium-button {
  display: inline-block;
  padding: 5px 10px;
  font-size: 12px;
  border: none;
  background-color: #283876;
  color: #ffffff;
  cursor: pointer;
  border-radius: 3px;
}

.medium-button.clicked {
  background-color: #ddd;
  color: #000000;
}

.medium-button:hover {
  background-color: #ddd;
  color: #000000;
}

select option {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #333;
  background-color: #f5f5f5;
  padding: 5px 10px;
}

select option:hover {
  background-color: #e0e0e0;
}

select option:selected {
  background-color: #ccc;
  color: #fff;
}

select {
  border-radius: 10px;
}

select option {
  border-radius: 2px;
}

table {
  color: rgb(212, 8, 8);
}

th, td {
  color: rgb(216, 20, 20);
}

#lastDigitsList {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 2px;
  margin-top: 2px;
  font-size: 15px;
}

#lastDigitsList li {
  list-style-type: none;
  white-space: nowrap;
  padding: 5px;
  border: 1px solid;
  color: rgb(233, 14, 14);
  border-radius: 5px;
}

#lastDigitsList li.E {
  background-color: #020024d6;
  border-color: #020024d6;
}

#lastDigitsList li.O {
  background-color: red;
  border-color: red;
}

#sequenceCountsContainer {
  margin-top: 20px;
  border: 1px solid #020024d6;
  padding: 10px;
  font-size: 18px;
  color: #001aff;
}

#sequenceCountsLabel {
  font-weight: bold;
}

#sequenceCountsList {
  list-style-type: none;
  padding: 0;
}

#sequenceCountsList li {
  border: 1px solid #001aff;
  margin-bottom: 5px;
  padding: 5px;
  font-size: 16px;
}

#digitTable th,
#digitTable td {
  padding: 10px;
  text-align: center;
  border: 1px solid #ccccccd8;
}

#digitTable th {
  background-color: #f2f2f200;
}

#digitTable tbody tr:nth-child(even) {
  background-color: #f9f9f900;
}

#digitTable tbody tr:hover {
  background-color: #e6e6e67e;
}

h2 {
  color: #e31717;
}

table {
  display: none;
}

#lastDigitsContainer{
  display: none;
}

/* Add a class that hides the element */
.hidden {
  display: none !important;
}

@media screen and (max-width: 768px) {
  #lastDigitsList {
    font-size: 16px;
  }
}

@media screen and (max-width: 480px) {
  #lastDigitsList {
    font-size: 10px;
    padding: 0px;
  }
  #evenPercentage,
  #oddPercentage {
    text-align: center;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 20px;
  }
}

@media screen and (max-width: 768px) {
  .logo {
    width: 90px;
    height: 90px;
  }
}

@media screen and (max-width: 480px) {
  .logo {
    width: 70px;
    height: 70px;
  }
  .chartContainer {
    width: auto;
    height: 245px; /* Set a custom height in pixels */
    margin: 0 auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
  }

  .input-container {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
    margin-top: 0px;
  }
  
  .input-container select,
  .input-container input {
    display: flex;
    margin-right:5px;
  }
  #priceDisplay{
    display: none;
  }
  #percentageDisplay{
    padding: '0px';
    font-size: 8px;
  }

  
  #symbolInput {
    padding: 5px;
    font-size: 10px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    border: 2.5px solid #283876;
    width: 100%;
    margin-bottom: 3px;
    cursor: pointer;
  }
  

  #digitsInput {
  display: flex;
  width: 30px;
}

  
  .small-buttons-container {
    display: flex;
  }
  
  .medium-buttons-container {
    display: inline-block;

  }
  
  .small-button {
    display: inline-block;
    padding: 2px 5px;
    font-size: 10px;
    border: none;
    background-color: #283876;
    color: #ffffff;
    cursor: pointer;
    border-radius: 3px;
    margin: 1px;
  }
  
  .small-button.clicked {
    background-color: #ddd;
    color: #000000;
  }
  
  .small-button:hover {
    background-color: #ddd;
    color: #000000;
  }
  
  
  .medium-button {
    display: inline-block;
    padding: 5px 5px;
    font-size: 7px;
    border: none;
    background-color: #283876;
    color: #ffffff;
    cursor: pointer;
    border-radius: 3px;
  }
  
  .medium-button.clicked {
    background-color: #ddd;
    color: #000000;
  }
  
  .medium-button:hover {
    background-color: #ddd;
    color: #000000;
  }
  
  
  
  select option {
    font-family: 'Poppins', sans-serif;
    font-size: 7px;
    color: #333;
    background-color: #f5f5f5;
    padding: 5px 5px;
  }
  
  select option:hover {
    background-color: #e0e0e0;
  }
  
  select option:selected {
    background-color: #ccc;
    color: #fff;
  }
  
  select {
    border-radius: 10px;
  }
  
  select option {
    border-radius: 2px;
  }
  .percentage{
    display: none;
  }


  #lastDigitsList {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 2px;
  margin-top: 2px;
}

#lastDigitsList li {
  list-style-type: none;
  white-space: nowrap;
  padding: 2px;
  border: 1px solid;
  color: rgb(233, 14, 14);
  border-radius: 5px;
}

#lastDigitsList li.E {
  background-color: #020024d6;
  border-color: #020024d6;
}

#lastDigitsList li.O {
  background-color: red;
  border-color: red;
}

.container {
  position: relative;
  max-width: 100%;
  margin:0px 0px;
  padding: 5px;
  /* From https://css.glass */
  background: rgba(21, 94, 163, 0.2);
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 13.5px );
  -webkit-backdrop-filter: blur( 13.5px );
  border-radius: 35px;
  border: 1px solid rgba( 255, 255, 255, 0.18 );
}

}

/*SCROLL BAR*/

::-webkit-scrollbar{
  width: 0;
}

.section {
height: 100vh;
display: grid;
place-items: center;
}

.progress {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 11px;
  height: 100vh;
  background-color: #e2e2e200;
}

.bar {
  display: block;
  height: 0;
  width: inherit;
  border-bottom-left-radius: 4px;
  opacity: 80%;
  background-image: linear-gradient(to bottom, rgba(0,212,255,1) 0%, rgba(9,9,121,1) 35%, rgba(2,0,36,1) 100%);
}

/*SCROLL BAR*/

::-webkit-scrollbar{
  width: 0;
}

.section {
height: 100vh;
display: grid;
place-items: center;
}

.progress {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 11px;
  height: 100vh;
  background-color: #e2e2e2;
}

.bar {
  display: block;
  height: 0;
  width: inherit;
  border-bottom-left-radius: 4px;
  opacity: 80%;
  background-image: linear-gradient(to bottom, rgba(0,212,255,1) 0%, rgba(9,9,121,1) 35%, rgba(2,0,36,1) 100%);
}

#lineChart {
  display: none !important;
}
#digitTable {
  display: none !important;
}

.chartContainer{
  display: none !important;

}

.frame {
  height: 100vh;
}

.frame iframe {
  width: 100%;
  height: 100%;
}

.inline-container {
  display: inline-flex;
  align-items: center; /* Align items vertically in the middle if needed */
  gap: 10px; /* Adds space between the elements */
}