@font-face {
	font-family: exocet;
	src: url(exocet-blizzard-medium.ttf);
}
.item {
	font-family: exocet;
	font-style: normal;
	font-weight: 400;
	text-align: center;
	background-color: rgba(0,0,0,0.8);
	color: #b39a74;
	position: absolute;
	z-index:2;
}

button {
	font-family: exocet;
	color: #b39a74;
    background-color: #222;
}

body {
	margin: 0;
}

.no-selection {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	background-color: black;
}
.dropdown select {
	color: #ddd;
	background-color: black;
	padding-left: 7px;
	width: 200px;
	height: 29px;
	border-color: #999;
	z-index: 5;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.dropdown option {
	padding-left: 7px;
}
.dropdown-set, .dropdown-unique, .dropdown-magic, .dropdown-rare, .dropdown-craft, .dropdown-common, .dropdown-rw, .dropdown-debug, .dropdown:hover, .dropdown:focus {
	background-color: #222;
	z-index: 6;
}
.dropdown-set {
	color: #00f000;
}
.dropdown-unique {
	color: #928068;
}
.dropdown-magic {
	color: #8080ff;
}
.dropdown-rare {
	color: yellow;
}
.dropdown-craft {
	color: orange;
}
.dropdown-common {
	color: #b39a74;
}
.dropdown-rw {
	color: #b2a992;
}
.dropdown-debug {
	color: #ff8080;
}
.dropdown-pod {
	color: #9b2aea;
}
.gray-all {
	color: #bbb;
	z-index: 3;
	background-color: #161616;
}

.itemarea {
	background-image: url("../images/item_hover.png");
}

.hover {
	font-family: exocet;
	position: absolute;
	text-align: center;
	color: white;
	background-color: rgba(0,0,0,0.65);
	padding: 5px;
	z-index: 7;
}
.new-dropdown {
	color: #ddd;
	background-color: black;
	border-color: #999;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	min-width: 80px;
	max-width: 200px;
}
.num-input {
	color: #ddd;
	background-color: black;
	border-color: #999;
	-webkit-appearance: none;
	-moz-appearance: none;
	max-width: 35px;
}
.label {
	color: #b39a74;
	display: inline;
}
.label2 {
	display: inline;
	opacity: 0%;
}
.new-dropdown-title {
	color: #b39a74;
	background-color: transparent;
}
.range {
	
}

input[type="file"] {
	display: none;
}

/* Navbar container */
.navbar {
	overflow: hidden;
	background-color: transparent;
	font-family: exocet;
}
/* The dropdown container */
.nav-dropdown {
	float: left;
	overflow: hidden;
}
/* Dropdown button */
.nav-dropbtn, .nav-dropbtn a {
	margin: 0;
	border: none;
	color: #ddd;
	padding: 4px 16px;
	background-color: transparent;
	font-family: exocet;
	font-size: 14px;
	text-decoration: none;
	text-transform: uppercase;
}
.nav-dropbtn a {
	padding: 0;
}
/* Highlight navbar options on hover */
.nav-dropdown:hover, .nav-dropbtn:hover, .nav-dropbtn:hover a, .nav-dropdown-content-item:hover {
	background-color: #222;
	color: #fff;
}
/* Dropdown content (hidden by default) */
.nav-dropdown-content {
	display: none;
	position: absolute;
	color: #eee;
	background-color: #333;
	min-width: 100px;
	box-shadow: 0px 8px 12px 4px rgba(0,0,0,0.5);
	z-index: 9;
}
.nav-dropdown-content-item {
	font-size: 13px;
	border-top: 1px solid rgba(150, 150, 150, 0.15);
	margin: 0px 2px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
}
.nav-dropdown-content-item:first-child {
	border-top: 0;
	margin-top: 2px;
}
.nav-dropdown-content-item:last-child {
	margin-bottom: 2px;
}
.nav-text {
	position: relative;
	height: 27px;
	top: 7px;
}
.nav-option {
  position: relative;
  height: 27px;
  top: 3px;
}
/* Show the dropdown menu on hover */
.nav-dropdown:hover .nav-dropdown-content {
	display: block;
}

.loading-window {
 /* display: none;*/
  position: fixed;
  z-index: 100;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,1);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
}

.reloading-window {
 /* display: none;*/
  position: fixed;
  z-index: 100;

  width: 745px;
  height: 100px;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,1);

  text-align: center;
}

/* Set the default scrollbar track and thumb */
::-webkit-scrollbar {
    width: 12px; /* Adjust width */
}

::-webkit-scrollbar-track {
    background: #222; /* Dark background for track */
}

::-webkit-scrollbar-thumb {
    background-color: #b39a74; /* Gold color from your XAML */
    border-radius: 6px; /* Rounded corners */
    border: 3px solid #222; /* Padding around the thumb */
}

/* Firefox-specific scrollbar customization */
* {
    scrollbar-width: thin;
    scrollbar-color: #b39a74 #222; /* Thumb color (gold) and track color */
}