@import url('https://fonts.googleapis.com/css2?family=Doppio+One:wght@400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.main-container {
    max-width: 1100px;
    margin: 0 auto;
}

.grid-header {
    margin-bottom: 48px;
    text-align: center;
}

.grid-header h1 {
    font-size: 2.25rem;
    margin-bottom: 8px;
}

.grid-header p {
    color: #64748b;
}

/* --- The Grid --- */
.card-grid {
    display: grid;
    /* Reduced min-width to 200px to allow more cards per row */
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    /* Narrower gap between cards */
    gap: 16px;
}

/* --- The Text Card --- */
.text-card {
    background-color: #ffffff;
    /* Significantly reduced padding */
    padding: 16px 12px;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* --- Hover Effects --- */
.text-card:hover {
    border-color: #3b82f6;
    background-color: #f8fafc;
    /* Smaller lift effect for a smaller card */
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card-title {
    /* Smaller font size */
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0f172a;
}

.card-subtitle {
    /* Smaller, more compact subtext */
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.3;
}
/* Accessibility for keyboard users */
.text-card:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 4px;
}


.slider {
  width: 100%;
  text-align: center;
  overflow: hidden;
}

.slides {
  font-size: 10px;
  display: flex;
  
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  
  
  
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  
  /*
  scroll-snap-points-x: repeat(300px);
  scroll-snap-type: mandatory;
  */
}
.slides::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
.slides::-webkit-scrollbar-thumb {
  background: black;
  border-radius: 10px;
}
.slides::-webkit-scrollbar-track {
  background: transparent;
}
.slides > div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100%;
  height: 300px;
  margin-right: 50px;
  border-radius: 10px;
  background: #114fbf;
  transform-origin: center center;
  transform: scale(1);
  transition: transform 0.5s;
  position: relative;
  
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 50px;
}
.slides > div:target {
/*   transform: scale(0.8); */
}
.author-info {
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 0.75rem;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
}
.author-info a {
  color: white;
}


.slider > a {
  display: inline-flex;
  width: 1.5rem;
  height: 1.5rem;
  background: white;
  text-decoration: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 0 0.5rem 0;
  position: relative;
}
.slider > a:active {
  top: 1px;
}
.slider > a:focus {
  background: #000;
}

/* Don't need button navigation */
@supports (scroll-snap-type) {
  .slider > a {
    display: none;
  }
}





.GFG {
      width: 100%;
      height: "auto";
      color: #111;
      background: #00f7ff;
      box-shadow: 0 0 50px #00f7ff;
}


/* From Uiverse.io by Luciefer0981 */ 
.brutalist-button {
  display: flex;
  align-items: center;
  cursor: pointer;
  width: 169px;
  height: 60px;
  background-color: #e3edf7;
  color: #000;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-weight: bold;
  border: 3px solid #fff;
  outline: 3px solid #000;
  box-shadow: 6px 6px 0 #e3edf7;
  transition: all 0.1s ease-out;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.brutalist-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.8),
    transparent
  );
  z-index: 1;
  transition: none;
  /* Initially hide the pseudo-element */
  opacity: 0;
}

@keyframes slide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.brutalist-button:hover::before {
  /* Show the pseudo-element on hover */
  opacity: 1;
  animation: slide 2s infinite;
}

.brutalist-button:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0 #000;
  background-color: #000;
  color: #fff;
}

@keyframes slide {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.brutalist-button:active {
  transform: translate(4px, 4px);
  box-shadow: 0px 0px 0 #00a4ef;
  background-color: #fff;
  color: #000;
  border-color: #000;
}

/* Rest of the CSS remains the same */

.ms-logo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  width: 26px;
  height: 26px;
  margin-right: 8px;
  flex-shrink: 0;
  transition: transform 0.2s ease-out;
  position: relative;
  z-index: 1;
}

.brutalist-button:hover .ms-logo {
  transform: rotate(-10deg) scale(1.1);
}

.brutalist-button:active .ms-logo {
  transform: rotate(10deg) scale(0.9);
}

.ms-logo-square {
  width: 100%;
  height: 100%;
}

.ms-logo-square:nth-child(1) {
  background-color: #f25022;
}
.ms-logo-square:nth-child(2) {
  background-color: #7fba00;
}
.ms-logo-square:nth-child(3) {
  background-color: #00a4ef;
}
.ms-logo-square:nth-child(4) {
  background-color: #ffb900;
}

.button-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  transition: transform 0.2s ease-out;
  position: relative;
  z-index: 1;
}

.brutalist-button:hover .button-text {
  transform: skew(-5deg);
}

.brutalist-button:active .button-text {
  transform: skew(5deg);
}

.button-text span:first-child {
  font-size: 11px;
  text-transform: uppercase;
}

.button-text span:last-child {
  font-size: 16px;
  text-transform: uppercase;
}

/* From Uiverse.io by CYBWEBALI */ 
.btn {
  display: grid;
  place-items: center;
  background: #e3edf7;
  padding: 0.4em;
  border-radius: 10px;
  box-shadow: 6px 6px 10px -1px rgba(0,0,0,0.15),
	      -6px -6px 10px -1px rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0);
  cursor: pointer;
  transition: transform 0.5s;
}

.btn:hover {
  box-shadow: inset 4px 4px 6px -1px rgba(0,0,0,0.2),
	      inset -4px -4px 6px -1px rgba(255,255,255,0.7),
	      -0.5px -0.5px 0px rgba(255,255,255,1),
	      0.5px 0.5px 0px rgba(0,0,0,0.15),
	      0px 12px 10px -10px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.1);
  transform: translateY(0.5em);
}

.btn svg {
  transition: transform 0.5s;
}

.btn:hover svg {
  transform: scale(0.9);
  fill: #333333;
}


#glow {
  text-shadow: 0 0 10px #59fff1, 0px 0px 0px rgba(88,250,255,0.03);
}

table {
  border-collapse: collapse;
}

td {
  border: 1px solid grey;
  padding: 5px;
}

img {
  width: 90%;
  height: auto;
}

th {
    position: sticky;
    top: 0;
    background-color: #011375; /* Your debug yellow, or maybe a nice blue? */
    z-index: 10;
}

#Highlight {
  background-color: ##4634eb
}

footer {

  width: 100%;
  text-align: center;
  padding: 0px;
  margin: 0px;
  background-color: white;
  color: blue;
}

#title {
font-family:'Montserrat', sans-serif;
font-size: 50px;
letter-spacing: 0px;
word-spacing: 0.4px;
color: #FFFFFF;
font-weight: bold;
text-decoration: none;
font-style: normal;
font-variant: normal;
text-transform: none;
}
body {
background: rgb(11,65,126);
background: linear-gradient(90deg, rgba(11,65,126,1) 0%, rgba(10,41,145,1) 100%); 
font-family: 'Doppio One', sans-serif;
color: #fff;
overflow-x: hidden;
}

.container {
    display: flex;  /* Make the container a flexbox */
}

.content-left {
    flex: 1;  /* Allocate space to the left content based on available space */
    padding: 1rem;  /* Add some padding for better readability */
}

.content-right {
    flex: 0 0 600px;  /* Allocate a fixed width of 300px for the image */
    padding: 1rem;
}

.content-right2 {
    flex: 0 0 100px;  /* Allocate a fixed width of 300px for the image */
    padding: 1rem;
}


.content-right2 img {
width: 300px;
}
/* Optional: Center the image vertically */
.content-right img {
    display: block;
    margin: 0 auto;

    width: 600px;  /* Set a desired width for the image */
    height: 337px;  /* Set a desired height for the image */

}

.content-left img {
    display: block;
 

    width: 600px;  /* Set a desired width for the image */
    height: 337px;  /* Set a desired height for the image */

}

a {  /* Selects all links */
  font-family: 'Doppio One', sans-serif;
  text-decoration: none;  /* Remove underline */
  color: #035efc;  /* Set text color to dark gray */
  font-weight: bold;  /* Make the text bold */
}

a:hover {  /* Applies styles when hovering over the link */
  color: #007bff;  /* Change color on hover (blue) */
}

#footer {
font-family: 'Doppio One', sans-serif;
font-size: 18px;
letter-spacing: 1.0px;
word-spacing: 0.4px;
color: #000000;
font-weight: normal;
text-decoration: none;
font-style: normal;
font-variant: normal;
text-transform: none;
}



#demoFont {
font-family: "Kanit", sans-serif;
font-size: 21px;
letter-spacing: 1.0px;
word-spacing: 0.4px;
color: #FFFFFF;
font-weight: normal;
text-decoration: none;
font-style: normal;
font-variant: normal;
text-transform: none;
}
hr {
  /* Adjust the thickness of the horizontal line */
  border-top-width: 2px;  /* Adjust value as desired (e.g., 1px, 5px) */

  /* Set the color of the line */
  border-color: #ffffff;  /* You can use any color value (e.g., #ff0000 for red) */

  /* Change the line style (solid, dashed, dotted) */
  border-style: solid;  /* Options: solid, dashed, dotted */

  /* Add some margin above and below the line */
  margin: 1rem 0;  /* Adjust values for top and bottom margin (e.g., 2rem 5rem) */
}

button {
  border-radius: 4px;
  background-color: #5ca1e1;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 32px;
  padding: 6px;
  width: 100px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 36px;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0,.7);
}

button{
  font-size: 16px;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

button:after {
  content: '»';
  position: absolute;
  opacity: 0;  
  top: 14px;
  right: -20px;
  transition: 0.5s;
  color: #000;
}

button:hover{
  padding-right: 24px;
  padding-left:8px;
}

button:hover:after {
  opacity: 1;
  right: 10px;
}

@import url(https://fonts.googleapis.com/css?family=Raleway);



.faq-header{
  font-size: 42px;
  border-bottom: 1px dotted #ccc;
  padding: 24px;
}

.faq-content {
  margin: 0 auto;
}

.faq-question {
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
}

.panel-title {
  font-size: 24px;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 10px 10px 0 48px;
  display: block;
  cursor: pointer;
}

.panel-content {
  font-size: 20px;
  padding: 0px 14px;
  margin: 0 40px;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  -webkit-transition: .4s ease;
  -moz-transition: .4s ease;
  -o-transition: .4s ease;
  transition: .4s ease;
}

.panel:checked ~ .panel-content{
  height: auto;
  opacity: 1;
  padding: 14px;
}

.plus {
  position: absolute;
  margin-left: 20px;
  margin-top: 4px;
  z-index: 5;
  font-size: 42px;
  line-height: 100%;
  -webkit-user-select: none;    
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  -webkit-transition: .2s ease;
  -moz-transition: .2s ease;
  -o-transition: .2s ease;
  transition: .2s ease;
}



.panel:checked ~ .plus {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.panel {
  display: none;
}

.btn img {
  width: 50px;
  height: 50px;
}

.news {
	position: relative;
	display: block;
	width: 80vw;
	height: 40vw;
	margin: 5% auto;
	padding: 0;
	border: none;
	border-radius: 10px;
	box-shadow: 0 30px 80px -20px rgba(0,0,0,.4), 0 10px 30px rgba(0,0,0,.1);
	background: rgba(0,0,0,.2);
	overflow: hidden;
}

.news:after {
	content: "";
	position: absolute;
	bottom:0;
	left:0;
	width: 100%;
	height: 5px;
	background: #fff;
	-webkit-animation: leftRight 20s infinite linear;
	animation: leftRight 20s infinite linear;
}
.gallery{
	position: relative;
	width: 100%;
	height: 100%;
	padding: 0;
	overflow: hidden;
	margin: 0;
}

.gallery_items {
	position: absolute;
	left: 0;
	top: 0;
	width: 400%;
	-webkit-animation: slide 20s infinite ease-in-out;
	animation: slide 20s infinite ease-in-out;
}

.gallery_item {
	position: relative;
	display: block;
	padding: 0;
	margin: 0;
	float: left;
	width: 25%;
}

.gallery_item img {
	width: 100%;
	border: 0;
	outline: 0;
	display: block;
}
.gallery_item span {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 8vw;
	line-height: 8vw;
	text-indent: 2.5vw;
	font-size: 3vw;
	text-shadow: 5px 5px 50px rgba(0,0,0,.15);
	color: #fff;
}
@keyframes leftRight{
  0%{width:0%;}
  30%{width:100%;}
  31%{width:0%;}
  66%{width:100%;}
  67%{width:0%;}
  99%{width:100%;}
  100%{width:0%;}
} 
@-webkit-keyframes leftRight{
  0%{width:0%;}
  30%{width:100%;}
  31%{width:0%;}
  66%{width:100%;}
  67%{width:0%;}
  99%{width:100%;}
  100%{width:0%;}
} 

@-webkit-keyframes slide{
   0% {left: 0%;}
  30% {left: 0%;}
  31% {left: -100%;}
  66% {left: -100%;}
  67% {left: -200%;}
  99% {left: -200%;}
  100% {left: 0%;}
}

@keyframes slide{
   0% {left: 0%;}
  30% {left: 0%;}
  31% {left: -100%;}
  66% {left: -100%;}
  67% {left: -200%;}
  99% {left: -200%;}
  100% {left: 0%;}
}

#Small {
  font-size: 11px;
}



.gallerytext-background {
  background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
  color: white; /* Text color */
  padding: 5px 5px; /* Add padding around the text */
  font-size: 1.5rem; /* Adjust font size */
  border-radius: 5px; /* Optional: round the corners of the background */
}


.blikarrow {
  padding-top: 0;
  margin-top: 0;
  font-size: 3rem; /* Adjust size as needed */
  font-weight: bold;
  color: #fff; /* White text color */
  text-align: center; /* Center the text */
  animation: pulseGlow 0.8s infinite alternate; /* Animation for pulsing and glowing */
  display: inline-block;
}

@keyframes pulseGlow {
  0% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6), 0 0 10px rgba(255, 255, 255, 1);
    transform: scale(1);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 1), 0 0 30px rgba(255, 255, 255, 1);
    transform: scale(1.1);
  }
  100% {
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.6), 0 0 10px rgba(255, 255, 255, 0.9);
    transform: scale(1);
  }
}

.zeromargin {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Table Styles - Minimal Template */
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-family: Inter, system-ui, sans-serif;
  font-size: 14px;
  border: 1px solid #e5e7eb;
  
  overflow: hidden;
}

/* Header Styles */
thead tr {
  background-color: #00458f;
}

th {
  color: #ffffff;
  font-weight: 600;
  text-transform: none;
  padding: 8px;
  text-align: left;
  border-bottom: 1px solid #e5e7eb;
  
}

th:last-child {
  
}

/* Body Styles */
tbody tr {
  background-color: #ffffff;
  transition: background-color 0.15s ease;
}



tbody tr:hover {
  background-color: #b4fff4;
}

td {
  color: #1f2937;
  padding: 12px;
  border-bottom: 1px solid #e5e7eb;
  
}

td:last-child {
  
}

tbody tr:last-child td {
  
}

/* Status badges (used in the Status column) */
.status {
  padding: 2px 8px;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
}
.status.stable {
  background-color: #dcfce7;
  color: #166534;
}
.status.beta {
  background-color: #fef3c7;
  color: #92400e;
}
.status.alpha {
  background-color: #f3f4f6;
  color: #6b7280;
}