.goog-te-banner-frame.skiptranslate, 
  .goog-te-gadget, 
  #goog-gt-tt, 
  .goog-te-balloon-frame {
    display: none !important;
  }

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    background-color: #f7f7f7;
    min-height: 100vh;
    user-select: none;
    -webkit-user-select: none;
}

header {
    background-color: #9342bc;
    transition: background-color 0.3s ease;
}

header nav a {
    font-weight: 500;
    font-size: 0.95rem;
}

/* Hamburger Menu Styles */
#hamburger-btn {
    display: none; /* Hidden by default, shown on small screens via media query */
}

#nav-menu {
    transition: all 0.3s ease-in-out;
}

.logo-area {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 3px;
}
img.logo-edumat-blog {
    height: 24px;
    mix-blend-mode: exclusion;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    #hamburger-btn {
        display: block; /* Show hamburger button on small screens */
    }

    #nav-menu {
        display: none; /* Hidden by default on small screens */
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    #nav-menu.active {
        display: flex; /* Show menu when toggled */
    }

    .blog-card {
        margin-bottom: 1.5rem;
    }

    .blog-card .blog-cover-img {
        height: 210px;
    }

    article .blog-cover-img {
        height: 210px;
    }

    .prose h1 {
        font-size: 2rem;
    }

    .prose h2 {
        font-size: 1.35rem;
    }

    .prose p, .prose ul, .prose blockquote {
        font-size: 1.1rem;
    }

    .featured-img {
        height: 200px;
    }

    article .bg-gray-100 {
        flex-direction: row;
        align-items: flex-start;
        gap: 1rem;
    }
}
.bgl-table {
    min-inline-size: max-content;
}
@media (max-width: 640px) {
    .grid {
        grid-template-columns: 1fr;
    }
    .table-container {
    width: 360px;
    overflow-y: hidden;
    overflow-x: scroll;
}
.bgl-table{
    width: max-content;
}
img.w-full.max-w-md.mx-auto {
    width: 300px;
}
}

/* Existing Styles (unchanged) */
.blog-card {
    background: transparent;
    border-radius: 12px;
}

.blog-card img {
    transition: all 0.3s ease-in-out;
}

.blog-card:hover img {
    scale: 1.02;
    border-radius: 10px;
}

.prose {
    color: #2d2d2d;
    max-width: 100%;
}

.prose h1 {
    font-family: 'Merriweather', serif;
    font-weight: 700;
}

.prose h2 {
    font-family: 'Merriweather', serif;
    font-size: 1.75rem;
    margin-top: 2.5rem;
    font-weight: 700;
}

.prose p {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.8;
}

.prose ul {
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    line-height: 1.8;
}

.prose blockquote {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
}

article img {
    max-height: 500px;
    border-radius: 8px;
}

article .bg-gray-100 {
    background-color: #f1f1f1;
    border-radius: 10px;
}

article button svg {
    stroke-width: 1.5;
}

article button:hover:not(:disabled) svg {
    stroke: #15803d;
}

article button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

p {
    font-size: medium;
}

@media (max-width: 1024px) {
    .blog-card img {
        height: 180px;
    }

    .prose p, .prose ul, .prose blockquote {
        font-size: 1.15rem;
    }

    .prose h2 {
        font-size: 1.5rem;
    }
}


/* Footer Styles */
footer {
  background-color: #100019;
  color: #ddd;
  padding: 20px 0;
  font-size: 14px;
  margin-top: 15px;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: bold;
  margin: -2px;
}

/* Top Section: Logo & Links in One Line */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Ensures responsiveness */
  padding: 0 20px;
}

/* EduMat Logo */
.footer-logo {
  font-size: 20px;
  font-weight: bold;
}

a.brand {
  font-family: "Lexend", serif !important;
  color: white;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.highlight {
  color: #ffcc00;
}
a.brand img {
  height: 26px;
}
/* Navigation Links */
.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Divider Line */
.footer-divider {
  border: 0;
  height: 1px;
  background-color: #444;
  margin: 15px 0;
}

/* Social Media Icons */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.footer-social a {
  color: #ddd;
  font-size: 18px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #fff;
}

/* Copyright */
.footer-copyright {
  text-align: center;
  font-size: 12px;
  color: #aaa;
}
.table-container {
    width: 720px;
    overflow-y: hidden;
    overflow-x: scroll;
}
/* Responsive Design */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    margin-top: 10px;
    flex-direction: column;
    gap: 10px;
  }
}

.tool-bar-sticky {
    position: sticky;
    top: 70px;
    filter: drop-shadow(2px 4px 3px lightgray);
}

.str-tag {
    background-color: #fff176;
    padding: 3px 6px;
    margin: 4px 4px 4px 0;
    display: inline-block;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
}
.game-download-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.game-download-line span {
    font-size: 18px;
    font-weight: 700;
    font-style: italic;
    color: #616161;
    margin-left: 10px;
}
.text-sm-qtm {
    font-size: 14px;
} 


.sub-t-h3{
    position: relative;
    margin: 5px 0;
}
.sub-t-h3::before {
    content: " ";
    height: 4px;
    width: 120px;
    background-color: #006056;
    position: absolute;
    left: 0;
    bottom: -4px;
    border-radius: 5px;
}