* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Comic Neue", cursive !important;
}

:root {
  --main-gray-color: #e8e7e7;
  --blue-color: #0d6efd;
  --baby-blue: rgb(96 165 250);
  --green-color: rgba(74 222 128);
  --red-color: rgb(248 113 113);
  --pink-color: rgb(244 114 182);
  --yellow-color: rgb(250 204 21);
  --yellow-dark-color: rgb(234 179 8);
  --orange-color: rgb(253 186 116);
  --purple-color: rgb(146, 51, 234);
  --light-blue: rgba(219 234 254);
}
.particle {
  position: fixed;
  bottom: 0;
  width: 12px;
  height: 12px;
  background: transparent;
  opacity: 0.7;
  border-radius: 0;
  animation: floatUp 6s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
  transform-origin: center;
}

.particle::before {
  content: "❄";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 30px;
  text-shadow: 0 0 3px #fff, 0 0 6px #ddd;
}
@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.9;
  }
  100% {
    transform: translateY(-150px) scale(0.7);
    opacity: 0;
  }
}

.bg-yellow-100 {
  background-color: #fef9c3 !important;
}
.bg-yellow {
  background-color: #ffc100 !important;
  color: white !important;
}
.bg-blue-100 {
  background-color: #dbeafe !important;
}
.bg-pink-100 {
  background-color: #fce7f3 !important;
}
.bg-purple-200 {
  background-color: #e9d5ff !important;
}
.bg-purple-700 {
  background-color: #7e22ce !important;
}
.bg-red-100 {
  background-color: #fee2e2 !important;
}

a.bg-white:hover,
button.bg-white:hover,
.nav-link.bg-white:hover,
a.bg-white:focus,
button.bg-white:focus,
.nav-link.bg-white:focus {
  background-color: #f1f1f1 !important;
  color: #000 !important;
  box-shadow: none !important;
  outline: none !important;
}
.text-purple-700 {
  color: #7e22ce !important;
}
.border-purple-600 {
  border-color: #a855f7 !important;
}
.bg-gradient-to-br {
  background-image: linear-gradient(
    to bottom right,
    #facc15,
    #ef4444,
    #ec4899
  ) !important;
}
.border-4 {
  border-width: 4px !important;
  border-style: solid !important;
}

.border-black {
  border-color: #000 !important;
}
.dropdown-toggle::after {
  display: none !important;
}
.dropdown-item:active,
.dropdown-item:focus,
.dropdown-item:focus-visible {
  background-color: inherit !important;
  color: #000 !important;
  box-shadow: none !important;
  outline: none !important;
}
.btn-close,
.btn-close:focus,
.btn-close:active {
  background-color: transparent !important;
  border: none !important;
  color: #000 !important;
  opacity: 1 !important;
  box-shadow: none !important;
  outline: none !important;
}

.max-w-md {
  max-width: 28rem !important;
}

.btn-close {
  --bs-btn-close-bg: none !important;
}

.modal-backdrop {
  opacity: 0.8 !important;
}

.fs-7 {
  font-size: 1.125rem !important;
}

.fs-8 {
  font-size: 0.875rem !important;
}

.fs-16 {
  font-size: 16px !important;
}
.w-90 {
  width: 90% !important;
}
.form-control:active,
.form-control:focus,
.form-control:focus-visible {
  box-shadow: none !important;
  border: 1px solid black !important;
}

.bg-violet {
  background-color: #7c3aed70 !important;
}
.bg-purple {
  background-color: #9233ea70 !important;
}

.bg-opacity-30 {
  --bs-bg-opacity: 0.3 !important;
}
.main-gray {
  color: var(--main-gray-color);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  opacity: 0.9;
  filter: blur(12px);
}

.main-gray-bg {
  background-color: var(--main-gray-color);
}
.btn-blue,
.btn-blue:focus,
.btn-blue:active {
  background-color: var(--blue-color) !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: var(--blue-color) !important;
}
.btn-baby-blue,
.btn-baby-blue:focus,
.btn-baby-blue:active {
  background-color: var(--baby-blue) !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: var(--baby-blue) !important;
}
.btn-green,
.btn-green:focus,
.btn-green:active {
  background-color: var(--green-color) !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: var(--green-color) !important;
}
.btn-red,
.btn-red:focus,
.btn-red:active {
  background-color: var(--red-color) !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: var(--red-color) !important;
}
.btn-pink,
.btn-pink:focus,
.btn-pink:active {
  background-color: var(--pink-color) !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: var(--pink-color) !important;
}
.btn-yellow,
.btn-yellow:focus,
.btn-yellow:active {
  background-color: var(--yellow-color) !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: var(--yellow-color) !important;
}

.btn-purple,
.btn-purple:focus,
.btn-purple:active {
  background-color: var(--purple-color) !important;
}
.btn-black,
.btn-black:focus,
.btn-black:active {
  background-color: #000 !important;
  color: #fff !important;
  box-shadow: none !important;
  outline: none !important;
  border-color: #000 !important;
}
.text-orange {
  color: var(--orange-color) !important;
}
.text-baby-blue {
  color: var(--baby-blue) !important;
}
.text-blue {
  color: var(--blue-color) !important;
}
.text-green {
  color: var(--green-color) !important;
}
.text-red {
  color: var(--red-color) !important;
}
.text-pink {
  color: var(--pink-color) !important;
}
.text-yellow {
  color: var(--yellow-color) !important;
}
.text-dark-yellow {
  color: var(--yellow-dark-color) !important;
}
.text-black {
  color: #000 !important;
}

.bg-light-blue {
  background-color: var(--light-blue) !important;
}

.max-w-xl {
  max-width: 56rem !important;
}

.crayon-text {
  text-shadow: 2px 2px #00000022;
  letter-spacing: 1px;
}

.green-neon-hover:hover {
  box-shadow: 0 0 15px #00ff99, 0 0 30px #00ff99 !important;
}

body {
  padding: 0;
  background-color: #fffdf7;
  background-image: url("../images/home_backgroundd.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  position: relative;
  overflow-x: hidden;
}
.bg-overlay {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.3) !important;
  pointer-events: none;
  z-index: -1;
}
.bg-black {
  background-color: #000 !important;
}

/* body::after{
    content: "";
    display: block;
    background: rgba(0, 0, 0, 0.5);
} */

.navbar-brand img.logo {
  width: 3rem;
  height: auto;
}
.animated-float {
  animation: float 3s ease-in-out infinite;
  will-change: transform;
  transform-origin: center;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.left-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
}

.left-widget-menu {
  padding: 1rem !important;
  border-radius: 1rem !important;
  width: 260px;
  position: absolute;
  inset: auto auto 10px 0 !important;
  margin: 0px;
  transform: translate(0px, -65px) !important;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
}
.right-widget {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 1rem !important;
  border-radius: 1rem;
  z-index: 40;
  max-width: 260px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(6px);
  right: 20px;
}
@media (max-height: 750px), (max-width: 768px) {
  .left-widget,
  .right-widget {
    display: none;
  }
}

.features {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  max-width: 47rem;
}
#bonus-silk {
  background-image: url("../images/board2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  padding: 2rem;
  max-width: 47rem;
}

.news {
  background-color: rgb(15 122 255 / 20%);
  backdrop-filter: blur(12px);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  max-width: 47rem;
}

.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}

/* footer {
    position: fixed;
    bottom: 2%;
    left: 50%;
    transform: translateX(-50%);
} */
.bg-equipment,
.bg-equipment-avatar {
  background-size: 100% 100% !important;
  width: 40% !important;
  height: 357px;
}

@media (max-width: 992px) {
  .bg-equipment,
  .bg-equipment-avatar {
    width: 70% !important;
    height: 357px;
  }
}

.itemslot,
.slots {
  width: 40px;
  height: 40px;
}
.itemslot {
  float: left;
}
.shield .itemslot,
.weapon .itemslot {
  margin-bottom: 25px;
  background: url(/image/sro/equipment/clean.png) repeat !important;
}
.head .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_helm.PNG) no-repeat !important;
}
.chest .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_mail.PNG) no-repeat !important;
}
.shoulder .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_shoulderguard.PNG)
    no-repeat !important;
}
.hands .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_gauntlet.PNG)
    no-repeat !important;
}
.legs .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_pants.PNG) no-repeat !important;
}
.foot .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_boots.PNG) no-repeat !important;
}
.earring .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_earring.PNG)
    no-repeat !important;
}
.necklace .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_necklace.PNG)
    no-repeat !important;
}
.lring .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_l_ring.PNG)
    no-repeat !important;
}
.rring .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_r_ring.PNG)
    no-repeat !important;
}
.specdress .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_specialdress.PNG)
    no-repeat !important;
  margin-top: 10px !important;
}
.hat .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_helm.PNG) no-repeat !important;
}
.dress .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_cloth.PNG) no-repeat !important;
}
.attach .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_pandernt.PNG)
    no-repeat !important;
}
.flag .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_plag.PNG) no-repeat !important;
}
.spec .itemslot {
  background: url(/image/sro/interface/equipment/equip_slot_extraneous01.PNG)
    no-repeat !important;
}
.bg-equipment-avatar .slots,
.slots {
  width: 23% !important;
  margin-bottom: 3px !important;
}
.slots.right {
  float: right;
  clear: right;
  margin-right: 0;
  margin-left: 10%;
}
.slots.left {
  float: left;
  clear: left;
  margin-left: 0;
  margin-right: 10%;
}
.slots.shield,
.slots.weapon {
  width: 23% !important;
  margin-bottom: 20px !important;
}
.image .itemslot .image {
  margin: 3px;
}
.itemslot .image .qinfo {
  font-size: 9px;
  font-weight: lighter;
  font-style: normal;
  text-shadow: 0 -0.5px #000;
  color: #fff;
  padding: 0;
  float: left;
}
.itemslot .image {
  margin: 3px;
}
.itemslot .image,
.weapon .itemslot .image {
  width: 100%;
  height: 100%;
  float: left;
  padding: 0 !important;
}
.weapon .itemslot .image {
  margin: 2px;
}
.shield .itemslot .image {
  width: 100%;
  height: 100%;
  float: left;
  margin: 2px;
  padding: 0 !important;
}
.itemInfo {
  color: #fff;
  z-index: 80;
  position: absolute;
  left: 34px;
  top: 3px;
  width: 210px;
  background: rgba(88, 98, 170, 0.85);
  border: 2px solid #303d4d;
  padding: 5px;
  display: none;
  line-height: 18px;
  font-size: 10px;
}
.ui-tooltip {
  position: absolute;
  z-index: 9999;
  max-width: 190px;
  padding: 8px !important;
  background: url(/image/sro/equipment/com_bg_tile_tl.PNG) no-repeat !important;
  background-size: 100% 100% !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 1px !important;
}
.ui-tooltip-content {
  font-family: Tahoma, Geneva, sans-serif;
  font-size: 11px !important;
  line-height: 15px;
  font-weight: lighter;
  font-style: normal;
  text-shadow: 1px 1px #000;
  color: #fff;
}
.equip-suit-slot {
  background: url(/image/sro/interface/equipment/equip_slot_specialdress.PNG)
    no-repeat !important;
  margin-top: 10px;
  float: right;
  clear: right;
}
.empty-slot {
  width: 40px !important;
  height: 40px !important;
}
.empty-slot {
  background: url(/image/sro/equipment/clean.png) no-repeat !important;
}
.bg-equipment-avatar .equip-suit-slot {
  background: url(/image/sro/interface/equipment/equip_slot_specialdress.PNG)
    no-repeat !important;
  width: 40px !important;
  height: 40px !important;
  margin-top: 96px;
  float: right;
  clear: right;
}
.equip-suit-slot .image {
  width: 34px !important;
  height: 34px !important;
  margin-left: 2px !important;
  margin-top: 2px !important;
}
div.image span.plus {
  display: block;
  width: 32px;
  height: 32px;
  background: url(/image/sro/equipment/itemplus.png) 0 0;
  -webkit-animation: play 1.8s steps(32) infinite;
  animation: play 1.8s steps(32) infinite;
}
@-webkit-keyframes play {
  to {
    background-position: -1024px;
  }
}
@keyframes play {
  to {
    background-position: -1024px;
  }
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.image {
  background-repeat: no-repeat !important;
  background-size: 34px 34px !important;
}
.bg-character {
  background-repeat: no-repeat !important;
  background-size: auto !important;
  background-position: center top !important;
}
#pill-inventory-tab.active,
#pill-inventory-tab.active:focus,
#pill-avatar-tab.active,
#pill-avatar-tab.active:focus {
  background-color: var(--yellow-color) !important;
  color: #fff !important;
}
#pill-avatar-tab.active:hover,
#pill-inventory-tab.active:hover {
  background-color: var(--yellow-dark-color) !important;
  color: #fff !important;
}

/* Swiper Customization */
.card-wrapper{
    max-width: 1100px;
    overflow: hidden;
    display: flex;
}

.card-wrapper ul
{
  display: flex;
  flex: 1;
  height: 100%;
}

.card-list .card-item{
    list-style: none;
}

.card-list .card-item .card-link{
    user-select: none;
    display: block;
    background-color: rgb(15 122 255 / 20%);
    backdrop-filter: blur(12px);
    border-radius: 1rem;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    padding: 18px;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
    transition: 0.2s ease;
}

.card-list .card-item .card-link *
{
    color: var(--main-gray-color) !important;
}

.card-list .card-item .card-link:active{
    cursor: grabbing;
}

.card-list .card-item .card-link:hover{
    border-color: #5372f0;
}

.card-list .card-link .card-image{
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 10px;
}

.card-list .card-link .badge{
    color: blue;
    margin: 16px 0 18px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.95rem;
    background: #dde4ff;
    width: fit-content;
    border-radius: 50px;
}

.card-list .card-link .card-title{
    font-size: 16px;
    color: #000;
    font-weight: 100;
    padding: 1rem;
    text-align: center;
}

.card-list .card-link .card-button{
    height: 35px;
    width: 35px;
    color: #5372f0;
    border-radius: 50%;
    margin: 30px 0 5px;
    background: none;
    cursor: pointer;
    transform: rotate(-45deg);
    border: 2px solid #5382f0;
    transition: 0.4s ease;
}

.card-list .card-link:hover .card-button{
    color: #fff;
    background: #ffffff;
}

.card-wrapper .swiper-pagination-bullet{
    height: 13px;
    width: 13px;
    opacity: 0.5;
    background: #ffffff;
}

.card-wrapper .swiper-pagination-bullet-active{
    opacity: 1;
}

.card-wrapper .swiper-slide-button{
    color: var(--main-gray-color);
    margin-top: -35px;
} 

@media screen and (max-width: 768px){
    .card-wrapper{
        margin: 0 10px 25px;
    }

    .card-wrapper .swiper-slide-button{
        display: none;
    }

    /* compact news/changelog cards on mobile */
    .news {
        padding: 1rem !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
    }
    .news .swiper,
    .card-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden;
    }
    .card-list .card-item .card-link {
        padding: 12px;
    }
    .card-list .card-link .card-image {
        width: 100% !important;
        height: 150px;
        aspect-ratio: auto;
        object-fit: cover;
    }
    .card-list .card-link .card-title {
        font-size: 14px;
        padding: 0.5rem 0.25rem;
    }
}
.swiper-button-next, .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 0px);
    left: auto;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 0px);
    right: auto;
}
/* =============================================
   NAVBAR SERVER SWITCHER
   ============================================= */
/* keep all navbar right-side items on one centered line */
#navbar-example2 .nav.nav-pills {
  align-items: center;
}
#navbar-example2 .nav.nav-pills > .nav-item {
  display: flex;
  align-items: center;
}
/* give the switcher its own breathing room */
.server-switch {
  margin-right: 0.85rem;
}
/* white pill server button */
.server-switch .server-switch-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  color: #1f2937;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.34rem 0.95rem;
  border-radius: 0.8rem;
  text-decoration: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  transition: filter 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.server-switch .server-switch-toggle:hover {
  color: #1f2937;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}
.server-switch-caret {
  font-size: 0.7rem;
  opacity: 0.55;
}
.server-switch .server-switch-toggle::after {
  display: none; /* hide default bootstrap caret */
}
.server-switch-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  flex-shrink: 0;
  animation: server-dot-pulse 2s ease-in-out infinite;
}
@keyframes server-dot-pulse {
  0%, 100% { box-shadow: 0 0 6px #22c55e; }
  50% { box-shadow: 0 0 13px #22c55e, 0 0 22px rgba(34, 197, 94, 0.4); }
}
.server-switch-caret {
  font-size: 0.7rem;
  opacity: 0.55;
}

.server-switch-menu {
  min-width: 216px;
  padding: 0.4rem;
  border: none;
  border-radius: 0.9rem;
  margin-top: 0.5rem !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}
.server-switch-head {
  font-size: 0.66rem !important;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #9ca3af;
  padding: 0.4rem 0.6rem 0.5rem;
  margin: 0;
}
.server-switch-item {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0.6rem 0.7rem !important;
  border-radius: 0.6rem;
  font-weight: 700;
  color: #1f2937 !important;
  transition: background 0.15s ease;
}
.server-switch-item:hover,
.server-switch-item:focus {
  background: #f3f4f6 !important;
  color: #111 !important;
}
.server-switch-item.active,
.server-switch-item.active:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(56, 189, 248, 0.14)) !important;
  color: #166534 !important;
}
.ssi-name {
  flex: 1;
}
.ssi-current {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #16a34a;
  background: rgba(34, 197, 94, 0.16);
  padding: 0.16rem 0.5rem;
  border-radius: 999px;
}
.ssi-go {
  font-size: 0.95rem;
  color: #9ca3af;
  transition: transform 0.15s ease, color 0.15s ease;
}
.server-switch-item:hover .ssi-go {
  color: #6366f1;
  transform: translate(2px, -2px);
}

/* =============================================
   NAVBAR MOBILE MENU
   ============================================= */
#navbar-example2 .navbar-toggler {
  border: none;
  padding: 0.2rem 0.5rem;
  box-shadow: none !important;
  outline: none !important;
  background: transparent;
}
.navbar-toggler-icon-custom {
  font-size: 1.7rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

@media (max-width: 991.98px) {
  #navbar-example2 .navbar-collapse {
    background: linear-gradient(135deg, #fde047, #facc15);
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 1rem;
    padding: 1rem;
    margin-top: 0.6rem;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
  }
  #navbar-example2 .navbar-collapse .nav.nav-pills {
    flex-direction: column;
    align-items: stretch;
    gap: 0.6rem !important;
    width: 100%;
    margin-top: 0.5rem;
  }
  #navbar-example2 .navbar-collapse .nav-item {
    display: block !important; /* stack toggle + dropdown vertically */
    width: 100%;
  }
  /* dark text so it stays readable on the yellow card */
  #navbar-example2 .navbar-collapse .nav-link.text-white {
    color: #1f2937 !important;
  }
  /* full-width tappable controls on mobile */
  .server-switch {
    width: 100%;
    margin-right: 0;
  }
  .server-switch .server-switch-toggle {
    width: 100%;
    justify-content: flex-start;
  }
  #navbar-example2 .navbar-collapse .nav-item > .btn,
  #navbar-example2 .navbar-collapse .nav-item > .nav-link {
    width: 100%;
    text-align: left;
  }
  /* dropdown menus open inline (not floating) inside the mobile panel */
  #navbar-example2 .navbar-collapse .dropdown-menu {
    position: static !important;
    inset: auto !important;
    transform: none !important;
    float: none !important;
    width: 100% !important;
    margin-top: 0.4rem !important;
    box-shadow: none;
  }
  .server-switch-menu,
  #navbar-example2 .navbar-collapse .dropdown-menu {
    border: 1px solid rgba(0, 0, 0, 0.08);
  }
}
