@charset "utf-8";
@import "validation.css";
@import "notice.css";

:root {
  --light-dark-color: rgba(18, 22, 55, 0.95);
}

#loading{
    background:rgba(0,0,0,.5);
    border-radius:10px 10px 0 0;
    color:#fff;
    display:none;
    position:fixed;
    bottom:0;
    left:calc(50% - 45px);
    width:90px;
    z-index:1000;
    padding:6px;
    text-align:center;
}

ul#vote-options {
  list-style: none;
  margin: 0;
  padding: 0;
}

#vote-options {
  font-size: auto;
  line-height: auto;
  list-style-type: none;
  margin: 0;
}

#vote-options li {
  line-height: 45px;
  height: 65px;
  margin-top: 10px;
  padding: 10px;
  background-color: var(--light-dark-color) !important;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
}

#vote-options li img {
  width: 75px;
  height: 45px;
}

#vote-options li button {
  border: 1px solid var(--primary);
  line-height: 28px;
  margin: 6px 0;
  padding: 0 5px;
  background-color: var(--primary);
  color: white;
  border-radius: 4px;
}

#vote-options li h5 {
  font-weight: bolder;
  font-size: 24px;
  border-left: 1px solid var(--primary);
  padding-left: 10px;
  margin-left: 10px;
  color: var(--text-main);
}

ul#paypal-options {
  list-style: none;
  margin: 0;
  padding: 0;
}

#paypal-options {
  font-size: auto;
  line-height: auto;
  list-style-type: none;
  margin: 0;
}

#paypal-options li {
  margin-top: 10px;
  padding: 10px;
  background-color: var(--light-dark-color) !important;
  border: 1px solid var(--border-soft);
  border-radius: 4px;
}

#paypal-options li h4 {
  color: var(--text-main);
  font-weight: 600;
  margin-bottom: 5px;
}

#paypal-options li h3 {
  color: var(--primary);
  font-size: 18px;
  font-weight: 700;
  margin: 5px 5px;
}

#pagination {
  padding: 1rem 0;
  display: flex;
  justify-content: center;
}

#pagination ul {
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
}

#pagination li {
  list-style: none;
}

#pagination a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
  margin: 2px;
}

#pagination a.on {
  background: #5865f2;
  border-color: #5865f2;
  box-shadow: 0 0 10px rgba(88, 101, 242, 0.4);
}

#pagination a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.bg-light-dark {
  background-color: var(--bg-main) !important;
}

.form-control,
.form-select {
  background-color: rgba(255, 255, 255, 0.05) !important;
  border-color: var(--border-soft) !important;
  color: var(--text-soft) !important;
}

.form-control:focus,
.form-select:focus {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border-color: var(--primary) !important;
  color: var(--text-soft) !important;
  box-shadow: 0 0 0 0.2rem rgba(31, 111, 255, 0.25);
}

.card {
  background-color: var(--light-dark-color) !important;
  border-color: var(--border-soft) !important;
  color: var(--text-main);
}

.card-header {
  background-color: rgba(0, 0, 0, 0.1) !important;
  border-color: var(--border-soft) !important;
}

.navbar {
  background: linear-gradient(135deg,
      rgba(18, 22, 55, 0.8) 0%,
      rgba(31, 111, 255, 0.1) 100%) !important;
  border-bottom: 1px solid var(--border-soft);
}

.nav-link {
  color: var(--text-muted) !important;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.btn-primary {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-primary:hover {
  background-color: #1550cc !important;
  border-color: #1550cc !important;
}

.btn-outline-primary {
  color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.btn-outline-primary:hover {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-soft {
  color: var(--text-soft) !important;
}

.badge {
  background-color: var(--primary) !important;
}

.table {
  color: var(--text-main);
  border-color: var(--border-soft);
  background-color: transparent !important;
}

.table tbody {
  background-color: transparent !important;
}

.table tbody tr {
  background-color: transparent !important;
}

.table tbody td {
  background-color: transparent !important;
}

.table thead {
  background-color: rgba(0, 0, 0, 0.2) !important;
  border-color: var(--border-soft) !important;
}

.table thead th {
  background-color: rgba(0, 0, 0, 0.2) !important;
  color: white !important;
}

.table-dark {
  background-color: rgba(0, 0, 0, 0.2) !important;
  --bs-table-hover-bg: rgba(255, 255, 255, 0.08) !important;
  --bs-table-hover-color: #fff;
}

.table-hover tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.08) !important !important;
}

.alert {
  border-color: var(--border-soft);
}

.alert-danger {
  background-color: rgba(220, 38, 38, 0.1) !important;
  color: #ff6b6b !important;
  border-color: rgba(220, 38, 38, 0.3) !important;
}

.alert-success {
  background-color: rgba(34, 197, 94, 0.1) !important;
  color: #4ade80 !important;
  border-color: rgba(34, 197, 94, 0.3) !important;
}

.alert-info {
  background-color: rgba(59, 130, 246, 0.1) !important;
  color: #60a5fa !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
}

.alert-warning {
  background-color: rgba(245, 158, 11, 0.1) !important;
  color: #fbbf24 !important;
  border-color: rgba(245, 158, 11, 0.3) !important;
}

.dropdown-menu {
  background-color: var(--light-dark-color) !important;
  border-color: var(--border-soft) !important;
}

.dropdown-menu .dropdown-item {
  color: var(--text-muted) !important;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item.active {
  background-color: rgba(31, 111, 255, 0.2) !important;
  color: var(--primary) !important;
}

.bg-glass {
  background: rgba(18, 22, 55, 0.6) !important;
  backdrop-filter: blur(10px);
}

.border-glass {
  border: 1px solid var(--border-soft) !important;
}

.pulse-account-table,
.pulse-rankings-table {
  color: #fff;
  width: 100%;
}

.pulse-account-table thead tr,
.pulse-rankings-table thead tr {
  background-color: var(--light-dark-color) !important;
}

.pulse-account-table tbody tr,
.pulse-rankings-table tbody tr {
  transition: 0.3s;
  background-color: var(--light-dark-color) !important;
  color: #fff;
}

.pulse-account-table td,
.pulse-rankings-table td {
  border-top: none;
  color: #fff;
}

.pulse-account-table th,
.pulse-rankings-table th {
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  border-bottom: 0 !important;
}

#tooltip {
  position: absolute;
  z-index: 11001;
  border: 1px solid #111;
  background-color: #221f28;
  padding: 5px;
  opacity: 0.9;
  font: normal 10px Tahoma, Helvetica, sans-serif;
  text-align: center;
  color: #fff;
}

#tooltip h3,
#tooltip div {
  margin: 0;
}

#item_filter_overlay {
  position: absolute;
  height: 400px;
  width: 300px;
  display: none;
  z-index: 9999;
}

#item_filter {
  width: 300px;
  height: 710px;
  padding-bottom: 2px;
  background: #fff;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7);
  -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.7);
  -moz-box-shadow: 0 0px 4px rgba(0, 0, 0, 0.7);
}

.item_filter_content {
  height: 600px;
  width: 285px;
  margin: 15px;
  overflow: auto;
}

.additional-links {
  background: var(--bg-card-soft);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 7px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.helper-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.helper-link span {
  color: var(--primary);
  font-weight: 600;
}

.helper-link:hover {
  background: rgba(31, 111, 255, 0.08);
  color: var(--text-main);
}

.sidebar-account-card {
  color: var(--text-main);
  text-align: center;
  font-size: 0.9rem;
  padding: 0;
}

.sidebar-account-card h5,
.sidebar-account-card h6 {
  color: var(--text-main);
}

.account-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  background: var(--bg-card-soft);
  padding: 10px;
  border-radius: 10px;
}

.account-stats .stat {
  flex: 1 1 80px;
  text-align: center;
  font-size: 0.85rem;
  min-width: 70px;
}

.account-stats .stat i {
  font-size: 1.2rem;
}

.account-stats .stat-value {
  font-weight: 600;
  color: var(--primary);
}

.account-stats .stat-label {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.account-actions .btn {
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-actions .btn i {
  font-size: 1rem;
}

.gens-war-bar {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: stretch;
  margin-bottom: 16px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.07), 0 4px 18px rgba(0, 0, 0, 0.5);
}

.gens-war-bar .gens-side-duprian {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: linear-gradient(90deg, #7a3a00, #c86a00);
  color: #ffe0a0;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  z-index: 2;
  min-width: 90px;
}

.gens-war-bar .gens-side-vanert {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: linear-gradient(90deg, #007a6a, #00c8a8);
  color: #a0ffe8;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  white-space: nowrap;
  z-index: 2;
  min-width: 90px;
  flex-direction: row-reverse;
}

.gens-war-bar .gens-track {
  flex: 1;
  position: relative;
  background: #111;
  overflow: hidden;
}

.gens-war-bar .gens-fill-duprian {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(200, 106, 0, 0.7),
      rgba(200, 106, 0, 0.15));
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gens-war-bar .gens-fill-vanert {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(270deg,
      rgba(0, 200, 168, 0.7),
      rgba(0, 200, 168, 0.15));
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gens-war-bar .gens-divider {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-50%);
}

.gens-war-bar .gens-score-label {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
  z-index: 3;
  pointer-events: none;
}

.gens-war-bar .gens-score-label.left {
  left: 8px;
}

.gens-war-bar .gens-score-label.right {
  right: 8px;
}

.gens-war-bar .gens-side-duprian img,
.gens-war-bar .gens-side-vanert img {
  height: 22px;
  width: auto;
  filter: drop-shadow(0 0 4px rgba(255, 200, 100, 0.6));
}

.gens-war-bar .gens-side-vanert img {
  filter: drop-shadow(0 0 4px rgba(0, 255, 200, 0.6));
}

.pulse-vault-grid-modern {
  position: relative;
  width: 321px;
  min-height: 600px;
  max-height: 600px;
  overflow: hidden;
  background-color: #06070d;
  background-image: url(../../default_assets/images/vault-grid-bg.jpg);
  background-size: cover;
  background-blend-mode: luminosity;
  border: 1px solid rgba(31, 111, 255, 0.15);
  border-top: 1px solid rgba(31, 111, 255, 0.4);
  border-bottom: 1px solid rgba(31, 111, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.8),
    0 8px 48px rgba(0, 0, 0, 0.9),
    0 0 24px rgba(31, 111, 255, 0.06),
    inset 0 0 80px rgba(0, 0, 0, 0.75);
}

.pulse-vault-grid-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 39px,
      rgba(255,255,255,0.022) 39px,
      rgba(255,255,255,0.022) 40px
    ),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 39px,
      rgba(255,255,255,0.022) 39px,
      rgba(255,255,255,0.022) 40px
    );
  pointer-events: none;
  z-index: 1;
}

.pulse-vault-grid-modern::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, transparent 45%, rgba(0,0,0,0.6) 100%),
    radial-gradient(ellipse at 50% 0%, rgba(31,111,255,0.05) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}

.pulse-grid-item-modern {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
  border-right: 1px solid rgba(255,255,255,0.022);
  border-bottom: 1px solid rgba(255,255,255,0.022);

  transition: filter 0.15s ease, transform 0.15s ease;
  will-change: filter, transform;
}
.pulse-grid-item-modern:hover {
  filter:
    brightness(1.22)
    drop-shadow(0 0 5px rgba(31,111,255,0.65))
    drop-shadow(0 0 12px rgba(31,111,255,0.3));
  transform: scale(1.06);
  z-index: 20;
}
.pulse-grid-item-modern.selected {
  filter: brightness(1.15);
  outline: 1px solid rgba(31,111,255,0.7);
  outline-offset: -1px;
  z-index: 15;
}

.item_size_12 {
  font-size: 12px;
}

.item_font_family {
  font-family: tahoma;
}

.item_white {
  color: #ffffff;
}

.item_light_green {
  color: #00ff00;
}

.item_light_blue {
  color: #80b2ff;
}

.item_light_blue_2 {
  color: #3366ff;
}

.item_blue {
  color: #0066ff;
}

.item_pink {
  color: #ff1493;
}

.item_yellow {
  color: #fade09;
}

.item_yellow_2 {
  color: #ffcc00;
}

.item_red {
  color: #ff0000;
}

.item_dark_red {
  color: #800000;
}

.item_dark_red_background {
  background-color: #800000;
}

.item_purple {
  color: #800080;
}

.item_socket {
  color: #b266ff;
}

.item_grey {
  color: #808080;
}

.item_yellow_title {
  color: #ffcc19;
}
.item_luck {
  color: #80b2ff;
}
.item_exe_title {
  color: #008000;
}

.item_socket_title {
  color: #b266ff;
}

.item_socket_exe_title {
  color: #7401df;
}

.item_ancient_title {
  color: #01df01;
}

.item_ancient_background {
  background-color: #0000ff;
}

.aOverlay {
  z-index: 998;
  position: fixed;
  background-color: #070a11;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}

.aModal {
  top: 20%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 422px;
  height: 445px;
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  display: none;
  opacity: 0;
  z-index: 999;
  padding: 0px 60px;
}

.aBackground {
  height: 349px;
  width: 305px;
  border: 1px solid black;
  margin-left: -2px;
  margin-top: -2px;
  padding: 0;
  background: url("../../default_assets/images/artifact/background.png");
  background-repeat: no-repeat;
  background-position: top left;
  float: left;
  position: relative;
  text-align: center;
  color: gold;
  padding-top: 15px;
}

.pentaOverlay {
  z-index: 998;
  position: fixed;
  background-color: #070a11;
  opacity: 0.8;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  cursor: pointer;
  display: none;
}

.pentaModal {
  top: 20%;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 422px;
  height: 445px;
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  display: none;
  opacity: 0;
  z-index: 999;
  padding: 0px 60px;
}

.pentaBackground {
  height: 349px;
  width: 311px;
  border: 1px solid black;
  margin-left: -2px;
  margin-top: -2px;
  padding: 0;
  background: url("../../default_assets/images/elements2.png?v1");
  background-repeat: no-repeat;
  background-position: top left;
  float: left;
  position: relative;
  text-align: center;
  color: gold;
  padding-top: 15px;
}

.shop-product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

.shop-product-list-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px 12px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.shop-product-list-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.shop-product-list-item .thumb {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.shop-product-list-item .thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.shop-product-list-item .detail {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.shop-product-list-item .item-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.3;
}

.shop-product-list-item .price {
  font-size: 0.75rem;
  color: var(--default-color);
  margin: 0;
}

.shop-product-list-item .item-buy {
  font-size: 0.75rem;
  padding: 4px 10px;
  margin-top: auto;
}

#item_form .item-panel {
  height: 100%;
  border-radius: 10px;
  padding: 1rem;
}

#item_form > .row > .col-md-4 .item-panel {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

#item_form > .row > .col-md-8 .item-panel {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

#item_form .col-md-8::after {
  content: '';
  display: table;
  clear: both;
}

#item_form .opt_title {
  float: left;
  clear: both;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  line-height: 2;
  padding-right: 0.65rem;
  max-width: 65%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#item_form .opt {
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  min-height: 2em;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
}

#item_form .opt select,
#item_form select {
  display: inline-block;
  padding: 0.25rem 2rem 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.07);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23adb5bd' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.375rem;
  appearance: none;
  -webkit-appearance: none;
  max-width: 260px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#item_form .opt select:focus,
#item_form select:focus {
  border-color: var(--primary, #1f6fff);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(31, 111, 255, 0.25);
}

#item_form input[type="number"] {
  display: inline-block;
  width: 72px;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.375rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

#item_form input[type="number"]:focus {
  border-color: var(--primary, #1f6fff);
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(31, 111, 255, 0.25);
}

#item_form input[type="checkbox"],
#item_form input[type="radio"] {
  width: 1em;
  height: 1em;
  vertical-align: middle;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0.2em;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}

#item_form input[type="radio"] {
  border-radius: 50%;
}

#item_form input[type="checkbox"]:checked,
#item_form input[type="radio"]:checked {
  background-color: var(--primary, #1f6fff);
  border-color: var(--primary, #1f6fff);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75em;
}

#item_form input[type="radio"]:checked {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}

#item_form .opt span[id^="credits_"],
#item_form span[id^="credits_"] {
  display: inline-flex;
  align-items: center;
  padding: 0.2em 0.5em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  background-color: #6c757d;
  border-radius: 0.25rem;
  min-width: 2rem;
  justify-content: center;
}

#item_form .full {
  color: rgba(255, 255, 255, 0.45);
  font-style: italic;
  margin: 0.5rem 0;
  font-size: 0.875rem;
}

#item_image_bg {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
}

.wh-item-selected {
    outline: 2px solid #20c997;
    box-shadow: 0 0 10px rgba(32, 201, 151, 0.45);
    border-radius: 3px;
}

#wh-item-ctx-menu .dropdown-item {
    font-size: 0.875rem;
    padding: 0.45rem 1rem;
}

.market-price-img {
  max-width: 22px;
  max-height: 22px;
  object-fit: contain;
  vertical-align: middle;
}

.latest-item-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 4px;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    transition: background 0.15s;
    margin-bottom:2px;
}

.latest-item-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    flex-shrink: 0;
}

.latest-item-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: 5px;
}

.latest-item-name {
    font-weight: 600;
    font-size: 13px;
    color: #e0e6f0;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.latest-item-name:hover {
    color: #5aafff;
}

.latest-item-name div {
    display: inline !important;
    font-size: inherit !important;
    font-family: inherit !important;
    color: inherit !important;
}

.latest-price-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: center;
}

.price-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #1558a8;
    border: 1px solid #2470c8;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    line-height: 1.4;
}

.price-pill .market-price-img {
    width: 16px !important;
    height: 16px !important;
    vertical-align: middle !important;
    border: 0 !important;
}

.price-pill-more {
    background: #0e3d6e;
    border-color: #1558a8;
    color: #90bfff;
}

#inventoryc {
  background-image: url("../../default_assets/images/inventoryc_brown.png?v2");
  width: 398px;
  height: 320px;
  text-align: center;
  display: inline-block;
  position: relative;
}

#inventoryc > img {
  position: absolute;
  top: 90px;
  left: 145px;
  border-radius: 50%;
  border: 3px solid var(--light-dark-color);
  width: 110px;
  height: 110px;
}

#inventoryc > div {
  position: absolute;
  background-repeat: no-repeat;
  background-position: center center;
}

#in_weapon {
  width: 90px;
  height: 136px;
  bottom: 0;
  left: -6px;
  background-size: contain !important;
}

#in_shield {
  width: 60px;
  height: 136px;
  bottom: 0;
  right: 8px;
  background-size: contain !important;
}

#in_helm {
  width: 68px;
  height: 68px;
  top: 2px;
  left: 66px;
}

#in_armor {
  width: 72px;
  height: 110px;
  top: 72px;
  left: 40px;
  background-size: contain !important;
}

#in_pants {
  width: 68px;
  height: 68px;
  bottom: 8px;
  left: 82px;
  background-size: contain !important;
}

#in_gloves {
  width: 68px;
  height: 68px;
  top: 116px;
  right: 54px;
  background-size: contain !important;
}

#in_boots {
  width: 68px;
  height: 68px;
  bottom: 8px;
  right: 82px;
  background-size: contain !important;
}

#in_wings {
  width: 138px;
  height: 102px;
  top: 8px;
  right: -2px;
  background-size: contain !important;
}

#in_zoo {
  width: 42px;
  height: 42px;
  top: 15px;
  left: 10px;
  background-size: contain !important;
}

#in_pendant {
  width: 38px;
  height: 38px;
  top: 20px;
  right: 136px;
  background-size: contain !important;
}

#in_ring1 {
  width: 38px;
  height: 38px;
  bottom: 92px;
  left: 96px;
  background-size: contain !important;
}

#in_ring2 {
  width: 38px;
  height: 38px;
  bottom: 92px;
  right: 96px;
  background-size: contain !important;
}

#in_pentagram {
  width: 64px;
  height: 64px;
  bottom: 8px;
  right: 169px;
  background-size: contain !important;
}

#in_ear1 {
  width: 32px;
  height: 32px;
  top: 72px;
  left: 0px;
  background-size: contain !important;
}

#in_ear2 {
  width: 32px;
  height: 32px;
  top: 72px;
  left: 115px;
  background-size: contain !important;
}
