    body {
      font-family: Telex, Sans-Serif;
      max-width: 960px;
      margin: auto;
      padding: 10px;
      background-color: #FFF2C2;
    }

    .header {
      opacity: 0.8;
      background-image:  linear-gradient(135deg, #ffb700 25%, transparent 25%), linear-gradient(225deg, #ffb700 25%, transparent 25%), linear-gradient(45deg, #ffb700 25%, transparent 25%), linear-gradient(315deg, #ffb700 25%, #ffffff 25%);
      background-position:  6px 0, 6px 0, 0 0, 0 0;
      background-size: 6px 6px;
      background-repeat: repeat;
      display: flex;
      border: solid 1px;
      padding-left: 20px;
      margin-top: 10px;
  
    }

    .header h1 {
      font-family: Righteous;
      font-size: 32px;
     } 

     .header h1 a {
      	text-decoration: none;
      	color: black;
     }

    .navbar {
      border: solid 1px;
      border-top: none;
      background: #ffb700;
     
     }

    .navbar ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
    }

    .navbar li {
      border-right: 0.5px solid;
      display: flex;
    }

    li.search-item {
      border-right: none;
      padding: 10px 50px;
    }

    .search-bar {
      padding: 8px 12px;
      border: solid .5px;
      font-size: 14px;
      background: #FFF2C2;
    }

    .search-bar:focus {
      outline: none;
      border-color: #ffb700; /* Ganti warna border */
      box-shadow: 0 0 0 1px; /* Kasih glow */
    }    
    

    .navbar a {
      text-decoration: none;
      color: black;
      padding: 15px 20px;
      display: flex;
      flex:1;
      align-items: center;
      transition: all 0.3s ease;
    }

    .navbar a:hover {
      background-color: #555; 
      color: #ff9900;
      transition: all ease-out 0.2s;
    }
    
    
    .content-container {
      display: flex;
      flex-direction: row;
      gap: 10px;
      padding-top: 1px;
      margin-top: 9px;
      height: 500px;
    }

    .main-content {
      border: 1px solid;
      flex: 1; /* Ambil sisa space yang ada */
      padding: 20px;
      font-size: 16px;
      min-width: 0; /* Prevent flex item overflow */
      overflow-y: auto;
      font-family: Telex, Sans-Serif;
      font-weight: 400;
    }
  	
  	.main-content h1,
	.main-content h2,
	.main-content h3 {
		margin-top: 10px;
		font-family: Telex, Sans-Serif;

	}

	.main-content ul {
		list-style: square;
		margin-left: 5px;
	}

	.main-content li {
		margin-bottom: 10px;
	}

	.main-content a {
		color: #57420f;
		text-decoration: underline;
	}

	.main-content a:visited {
		color: grey;
	}

	.main-content a:hover {
		background-color: #ffb700;
		color: black;
		border-color: #ffb700;
	}
    
    .scrollspy-sidebar {
      border: solid 1px;
      width: 200px; /* Fixed width untuk sidebar */
      padding: 10px;
      flex-shrink: 0; /* Jangan shrink saat space sempit */
      overflow-y: auto;
    }

    .scrollspy-nav {
      position: sticky; /* Sticky saat scroll */
      top: 20px;
    }

    .scrollspy-title {
      font-weight: bold;
      margin-bottom: 10px;
      margin-left: 10px;
      font-size: 18px;
    }

    #scrollspy-list {
      list-style: none;
      padding-left: 0;
      margin-left: 10px;
    }

    #scrollspy-list li {
      margin-bottom: 8px;
    }

    #scrollspy-list a {
      text-decoration: none;
      color: #333;
      font-size: 14px;
    }

    #scrollspy-list a:hover {
      	background-color: #ffb700;
		color: black;
		border-color: #ffb700;
		transition: all ease-out 0.3s ;
    }

    .loading {
      padding: 20px;
      text-align: center;
      color: #666;
    }

    .footer {
      background-color: #ffffff;
      opacity: 0.8;
      background-image:  linear-gradient(135deg, #ffb700 25%, transparent 25%), linear-gradient(225deg, #ffb700 25%, transparent 25%), linear-gradient(45deg, #ffb700 25%, transparent 25%), linear-gradient(315deg, #ffb700 25%, #ffffff 25%);
      background-position:  6px 0, 6px 0, 0 0, 0 0;
      background-size: 6px 6px;
      background-repeat: repeat;
      margin-top: 10px;
      padding: 20px;
      border: solid 1px;
      text-align: left;
    }
    
    .footer a {
      text-decoration: underline;
      font-family: Righteous;
      color: black;
    }
	
	.footer a:hover {
		background-color: #ffb700;
		color: black;
		border-color: #ffb700;
		transition: all ease-out 0.3s;
	}
	
    .footer img {
      margin: 3px;
      vertical-align: middle;
    }

/* Search Modal Styles */
.modal-search-result-item {
    outline: none;
}

.modal-search-result-item.selected {
    background-color: #FFF2C2 !important;
    border-left-color: #ffb700 !important;
    border-left-width: 4px !important;
}

.modal-search-result-item:focus {
    outline: 2px solid #ffb700;
    outline-offset: -2px;
}

.modal-results-container {
    scrollbar-width: thin;
    scrollbar-color: #ffb700 #f0f0f0;
}

.modal-results-container::-webkit-scrollbar {
    width: 8px;
}

.modal-results-container::-webkit-scrollbar-track {
    background: #f0f0f0;
}

.modal-results-container::-webkit-scrollbar-thumb {
    background-color: #ffb700;
    border-radius: 4px;
}

/* Mark.js/Fuse.js highlight styles */
mark {
    background-color: #ffb700;
    padding: 1px 2px;
    font-weight: bold;
}

/* Search Dropdown Styles */
.search-dropdown {
    font-family: Telex, Sans-Serif;
}

.dropdown-section {
    border-bottom: 1px solid #eee;
}

.dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: #f9f9f9;
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: bold;
}

.dropdown-hint {
    font-weight: normal;
    color: #999;
}

.dropdown-clear {
    color: #ffb700;
    cursor: pointer;
    font-weight: normal;
}

.dropdown-clear:hover {
    text-decoration: underline;
}

.dropdown-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.15s;
}

.dropdown-item:hover,
.dropdown-item.selected {
    background-color: #FFF2C2;
}

.dropdown-item-category {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.dropdown-item-text {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

.dropdown-item-recent {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #333;
}

.recent-icon {
    font-size: 12px;
    opacity: 0.5;
}

.dropdown-footer {
    padding: 12px 15px;
    text-align: center;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.dropdown-footer:hover {
    background-color: #f9f9f9;
}

.dropdown-shortcut {
    background: #f0f0f0;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 10px;
    color: #666;
}

.dropdown-empty {
    padding: 30px 20px;
    text-align: center;
    color: #666;
}

.dropdown-empty-hint {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

/* Grouped Search Results */
.search-summary {
    padding: 15px 20px;
    background: #f9f9f9;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    font-weight: bold;
    color: #333;
}

.search-category {
    border-bottom: 1px solid #eee;
}

.search-category-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: white;
    cursor: pointer;
    font-weight: bold;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 4px solid #ffb700;
    transition: background-color 0.2s;
}

.search-category-header:hover {
    background-color: #f9f9f9;
}

.category-name {
    flex: 1;
}

.category-count {
    background: #ffb700;
    color: black;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
}

.category-toggle {
    font-size: 10px;
    color: #666;
}

.search-category-results {
    padding: 0;
}

.modal-search-result-item {
    padding: 12px 20px 12px 40px;
    cursor: pointer;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.15s;
}

.modal-search-result-item:hover {
    background-color: #FFF2C2;
}

.modal-search-result-item.selected {
    background-color: #FFF2C2;
    border-left: 3px solid #ffb700;
}

.result-line {
    font-size: 11px;
    color: #999;
    margin-bottom: 4px;
}

.result-text {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
}

.show-more {
    padding: 10px 20px 10px 40px;
    color: #666;
    font-size: 12px;
    cursor: pointer;
    text-decoration: underline;
    color: #ffb700;
}

.show-more:hover {
    background-color: #f9f9f9;
}

/* Responsive: Sidebar pindah ke bawah di layar kecil */
@media (max-width: 600px) {
  .content-container {
  	width: 100%;
  	height: 100%;
    flex-direction: column;
  }
  
  .scrollspy-sidebar {
    width: 100%;
  }
  
  .scrollspy-nav {
    position: static;
  }
}
