body {
  font-family: 'Tahoma', sans-serif;
  background-color: #f9f9f9;
  margin: 0;
  padding: 0;
}

.navbar-nav {
  flex-wrap: wrap !important;
}

.navbar-nav > li {
  margin-bottom: 8px;
}

.dropdown-menu {
  z-index: 1050;
  border-radius: 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-item {
  font-size: 13px;
  font-weight: bold;
  color: #333;
  padding: 10px 20px;
  transition: all 0.2s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #d24e01;
  padding-left: 24px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1030;
}

.custom-navbar {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-navbar .nav-link {
  font-weight: 600;
  font-size: 12px;
  margin-right: 20px;
  color: black;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover {
  color: green !important;
}

.navbar-toggler {
  border-color: white;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='black' viewBox='0 0 30 30'%3e%3cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Sidebar kanan */
.sidebar-right {
  position: fixed;
  top: 150px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 2000;
}

.sidebar-button {
  width: 45px;
  height: 45px;
  background-color: #007BFF;
  color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
  cursor: pointer;
}

.sidebar-button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .navbar-brand img {
    max-height: 50px;
  }

  .navbar-nav .nav-link {
    margin-right: 0;
  }

  .sidebar-right {
    top: 120px;
    right: 5px;
    gap: 8px;
  }

  .sidebar-button {
    width: 40px;
    height: 40px;
  }
}
