body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f2f2f2;
}

.container-box {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.left-column {
  background: #ffffff;
  flex: 1 1 55%;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.right-column {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  background: linear-gradient(to bottom right, #004466, #006699);
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
}

.info-box a.btn {
  display: inline-block;
  margin-top: 15px;
  background: #ffffff;
  color: #004466;
  padding: 10px 15px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.info-box a.btn:hover {
  background: #eee;
  color: #000;
}

/* Brand Section */
.brand-section {
  padding: 10px 0;
}

.brand-section h5 {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.brand-logos {
  display: flex;
  gap: 15px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brand-logos:hover {
  animation-play-state: paused;
}

.brand-item {
  flex: 0 0 auto;
  width: 100px;
  height: 100px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollLeft 25s linear infinite;
}

.brand-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-item:hover {
  border-color: #007BFF;
  box-shadow: 0 0 8px rgba(0, 123, 255, 0.3);
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
  }

  .left-column, .right-column {
    flex: 1 1 100%;
  }

  .brand-item {
    width: 80px;
    height: 80px;
  }
}
nav.navbar {
  background-color: #004466;
  padding: 15px 0;
  text-align: center;
  width: 100%;
}

nav.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

nav.navbar ul li {
  display: inline;
}

nav.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 15px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

nav.navbar ul li a:hover {
  background-color: #006699;
  color: #fff;
}
/* Navigasi Custom */
.navbar {
  background-color: transparent;
  border-bottom: 1px solid #e5e5e5;
}

.navbar-nav {
  margin: 0 auto;
}

.navbar-nav .nav-link {
  padding: 10px 15px;
  color: #333;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #e63946;
  border-bottom: 2px solid #e63946;
  background-color: transparent;
}
.ticket-view-form form {
  max-width: 500px;
  margin: 0 auto;
}

/* Optional padding & spacing tweaks for view page */
.container {
  max-width: 1000px;
}

.bg-white {
  background-color: #ffffff;
}

.shadow-sm {
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
