* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
}

/* Navbar container */
.navbar {
  position: relative;
  background-color: #333;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
}

/* Logo */
.logo {
  font-size: 24px;
  font-weight: bold;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00bcd4;
}

/* Hide menu toggle on large screens */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ----- Responsive part ----- */
@media (max-width: 768px) {
  /* Hide nav links by default */
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    flex-direction: column;
    width: 100%;
    padding: 10px 0;
    margin: 0;
    border-radius: 0;
  }

  .nav-links.show {
    display: flex; /* Show when toggled */
  }

  .menu-toggle {
    display: block; /* Show hamburger on small screens */
    cursor: pointer;
  }
}
/* -------------------- nav end ----------------------- */


/* Content styling */
.content {
  padding: 20px;
  text-align: left;
  font-size: 20px;
  
}
.backnext {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px;
  gap: 20px;
}