body {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      margin: 0;
      font-family: Arial, sans-serif;
      background-color: #ffffff; /* Warna latar belakang default */
    }


    /* Elemen pseudo untuk latar belakang gambar */
    body::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: url('../img/bgcikdam.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0.7; /* Atur opasitas hanya untuk latar belakang */
      z-index: -1; /* Pastikan latar belakang berada di bawah konten */
    }
    .container {
      text-align: center;
      max-width: 600px; /* Batas lebar untuk tampilan responsif */
      padding: 20px; /* Opsional */
    }
    .logo {
      width: 150px;
      margin-bottom: 20px;
    }
    #preview {
      display: none;
      width: 100%;
      max-width: 300px;
      margin-top: 20px;
    }
    #video {
      width: 100%;
      max-width: 400px;
      margin-top: 20px;
      border: 2px solid #ccc;
      border-radius: 8px;
    }

    #result {
      margin-top: 20px;
      font-size: 18px;
      font-weight: bold;
    }

    .alert {
      margin-top: 10px;
    }

    .menu-item {
      background-color: #ffffff !important;
      border: 2px solid #ddd;
      padding: 15px;
      margin: 10px 0;
      text-align: center;
      border-radius: 5px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    }
    .menu-item img {
      max-width: 100%;
      height: auto;
      border-radius: 5px;
    }
    .menu-title {
      font-size: 1.5rem;
      font-weight: bold;
      margin-bottom: 10px;
    }
    .btn-order {
      background-color: #f8b400;
      color: white;
      border-radius: 20px;
      font-size: 1rem;
      padding: 10px 20px;
    }
    .btn-order:hover {
      background-color: #f8a500;
    }
    .cart {
      margin-top: 30px;
      border-top: 2px solid #ddd;
      padding-top: 20px;
    }
    .cart-item {
      border-bottom: 1px solid #ddd;
      padding: 10px 0;
    }
    .cart-total {
      font-weight: bold;
      font-size: 1.2rem;
    }
    .nav-tabs .nav-link {
      background-color: #bebebe !important;
      color: #000000;
    }
    .nav-tabs .nav-link.active {
      background-color: #ffc107 !important;
    }

    .sidebar-menu {
            width: 250px;
            background-color: #343a40;
            color: #fff;
            position: fixed;
            top: 0;
            left: 0;
            bottom: 0;
            transition: transform 0.3s ease;
            transform: translateX(0);
        }
        .sidebar-menu a {
            color: #fff;
            text-decoration: none;
            padding: 10px 20px;
            display: block;
        }
        .sidebar-menu a:hover {
            background-color: #495057;
        }
        .sidebar .toggle-btn {
            position: absolute;
            top: 20px;
            left: 100%;
            margin-left: -25px;
            background-color: #343a40;
            border: none;
            color: #fff;
            font-size: 20px;
            cursor: pointer;
        }
        .main-content {
            margin-left: 250px;
            padding: 20px;
            background-color: #f8f9fa;
            flex-grow: 1;
            transition: margin-left 0.3s;
        }
        .headbar {
            background-color: #343a40;
            color: #fff;
            padding: 10px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: fixed;
            top: 0;
            left: 250px; /* Disesuaikan dengan lebar sidebar */
            right: 0;
            z-index: 1000;
            width: calc(100% - 250px);
        }
        .table-responsive {
        width: 100%;
        overflow-x: auto; /* Membuat tabel dapat digulir secara horizontal */
        }

        table {
            table-layout: fixed; /* Membatasi lebar kolom */
            width: 100%;
        }
        th, td {
            white-space: nowrap; /* Mencegah teks membungkus ke baris baru */
            overflow: hidden; /* Menyembunyikan konten yang keluar dari batas kolom */
            text-overflow: ellipsis; /* Menambahkan tanda elipsis untuk teks yang terlalu panjang */
        }
        .pointwrap{
          left: 20px;
          top: 50px;
          position: relative;
          z-index: 99;
          background-color: #91b664;
          color: #000000;
          box-shadow: 10px 10px 20px 5px rgba(0, 0, 0, 0.5);
          width: 120px !important;
          height: 50px;
          border-radius: 15px 0 15px 0;
          display: flex;
          align-items: center;
          justify-content: center;
        }
         .hargawrap {
          right: 25px;
          top: 70px;
          position: relative;
          z-index: 99;
          background-color: #ffffff;
          color: #000000;
          width: 120px !important;
          height: 50px;
          display: flex;
          align-items: center;
          justify-content: center;
          font-size: 1.3em;
          z-index: 99;
        }



