/* ====== Header Styles Only ====== */

/* Reset minimal */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar (Header utama) */
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Flex header */
.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
  text-decoration: none;
}

/* Link navigasi */
.navbar nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s;
}

/* Tombol logout */
.navbar nav .btn {
  background: #0066cc;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  transition: 0.3s;
}

.navbar nav .btn:hover {
  background: #004d99;
}

/* Hover effect */
.navbar nav a:hover {
  color: #0066cc;
}

/* ====== Responsive ====== */
@media (max-width: 768px) {
  .nav-flex {
    flex-direction: column;
  }

  .navbar nav {
    margin-top: 10px;
  }

  .navbar nav a {
    display: inline-block;
    margin: 6px 8px;
  }
}
