        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }
        .latar {
            background: url(https://img.freepik.com/free-vector/industrial-textured-background_91008-372.jpg);
            background-repeat: no-repeat;
            background-size: cover;
        }
        header {
            background-color: #4b3621; /* Warna kopi */
            color: #fff;
            padding: 10px 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        header nav {
            display: flex;
            gap: 20px;
        }
        header nav a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
        }
        header nav a:hover {
            text-decoration: underline;
        }
        .dropdown-content a {
            display: block;
            color: #fff;
            padding: 5px;
            text-decoration: none;
        }
        .dropdown-content a:hover {
            background-color: #6a4b31;
        }
        .container {
            position: sticky;
            top: 45px;
            background-color: #f2f2f2;
            padding-left: 20px;
            padding-right: 20px;
            padding-top: 10px;
            padding-bottom: 5px;
        }
        .toolbox {
            width: 100%;
            /* background-color: rgb(210,180,50); */
            gap: 5px; /* Jarak antar objek */
        }
        #toolbar {
            display: flex;
            flex-wrap: wrap; /* Memungkinkan tombol berpindah ke baris berikutnya */
            gap: 5px; /* Jarak antar tombol */
            justify-content: center; /* Pusatkan tombol saat layar besar */
            margin-bottom: 10px;
        }
        
        #toolbar button {
            padding: 8px 15px;
            font-size: 16px;
            border: none;
            background-color: #4b3621;
            color: white;
            cursor: pointer;
            border-radius: 5px;
        }
        
        #toolbar button:hover {
            background-color: #6a4b31;
        }
        
        /* Media query untuk layar kecil */
        @media (max-width: 600px) {
            #toolbar {
                justify-content: flex-start; /* Biarkan tombol rata kiri pada layar kecil */
            }
        
            #toolbar button {
                font-size: 14px;
                padding: 6px 10px;
            }
        }
        main {
            margin: 10px auto;
            width: 90%;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        #editor {
            width: 100%;
            height: 2000px;
            border: 1px solid #ccc;
            padding: 0;
            overflow-y: auto;
        }
        #editor:focus {
            outline: none;
            border-color: #007BFF;
        }
        
        
        .topnav {
            overflow: hidden;
            background-color: #333;
            position: sticky;
            top: 0;
        }
        
        .topnav a {
          float: left;
          display: block;
          color: #f2f2f2;
          text-align: center;
          padding: 14px 16px;
          text-decoration: none;
          font-size: 17px;
        }
        
        .active {
          /* background-color: #04AA6D; */
          color: white;
        }
        
        .topnav .icon {
          display: none;
        }
        
        .dropdown {
          float: left;
          overflow: hidden;
        }
        
        .dropdown .dropbtn {
          font-size: 17px;    
          border: none;
          outline: none;
          color: white;
          padding: 14px 16px;
          background-color: inherit;
          font-family: inherit;
          margin: 0;
        }
        
        .dropdown-content {
          display: none;
          position: absolute;
          background-color: #f9f9f9;
          min-width: 160px;
          box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
          z-index: 1;
        }
        
        .dropdown-content a {
          float: none;
          color: black;
          padding: 12px 16px;
          text-decoration: none;
          display: block;
          text-align: left;
        }
        
        .topnav a:hover, .dropdown:hover .dropbtn {
          background-color: #555;
          color: white;
        }
        
        .dropdown-content a:hover {
          background-color: #ddd;
          color: black;
        }
        
        .dropdown:hover .dropdown-content {
          display: block;
        }
        
        @media screen and (max-width: 600px) {
          .topnav a:not(:first-child), .dropdown .dropbtn {
            display: none;
          }
          .topnav a.icon {
            float: right;
            display: block;
          }
        }
        
        @media screen and (max-width: 600px) {
          .topnav.responsive {position: relative;}
          .topnav.responsive .icon {
            position: absolute;
            right: 0;
            top: 0;
          }
          .topnav.responsive a {
            float: none;
            display: block;
            text-align: left;
          }
          .topnav.responsive .dropdown {float: none;}
          .topnav.responsive .dropdown-content {position: relative;}
          .topnav.responsive .dropdown .dropbtn {
            display: block;
            width: 100%;
            text-align: left;
          }
        }

        input[type=text], select, textarea {
          width: 60%;
          padding: 6px;
          border: 1px solid #ccc;
          border-radius: 4px;
          resize: vertical;
          margin-bottom: 5px;
        }
        