.navbar
{
  border-bottom: 1px solid grey;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.sidebar 
{
  border-right: 1px solid grey;
}

.container 
{
  max-width: 100% !important;
}

.navbar-brand {
  letter-spacing: 0.5px;
  font-size: 1.25rem;
  margin-left: 1rem;
}

.navbar-nav .nav-link:hover {
  color: #ffc107 !important; /* Bootstrap warning yellow */
}

a:hover {
  color: #ffc107 !important;
}

.btn:hover{
  color: white !important;
}

/* Russo One Font */
@import url('https://fonts.googleapis.com/css2?family=Russo+One&display=swap');

/* Apply to core headings */
h1, h2, h3, h4, h5, h6,
.navbar-brand,
.nav-link,
.sidebar-title,
.sidebar a,
.card-header,
.btn-title,
button,
.btn,
a.btn,
a.nav-link,
.sidebar .nav-link,
.offcanvas-header,
.offcanvas-title {
  font-family: 'Russo One', sans-serif !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#chatWrapper {
  position: fixed;
  bottom: 0;
  right: 20px;
  width: 300px;
  font-family: sans-serif;
  z-index: 999;
}

#chatToggle {
  background: #111;
  color: white;
  padding: 8px;
  font-weight: bold;
  cursor: pointer;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: 1px solid #333;
  border-bottom: none;
}

#chatContainer {
  display: none;
  flex-direction: column;
  background: #222;
  border: 1px solid #333;
  border-top: none;
  max-height: 300px;
}

.chat-collapsed #chatContainer {
  display: none;
}

.chat-expanded #chatContainer {
  display: flex;
}

#chatBox {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
  height: 300px;
  color: #fff;
  font-size: 14px;
}

.chat-input-wrap {
  display: flex;
  border-top: 1px solid #444;
}

#chatInput {
  flex: 1;
  padding: 8px;
  background: #111;
  color: #fff;
  border: none;
  outline: none;
}

.chat-input-wrap button {
  padding: 0 10px;
  cursor: pointer;
}

.admin-chat {
  color: #ff4d4d !important; font-weight: bold;
}

.mod-chat {
  color: #ffd700 !important; font-weight: bold;
}

.player-chat {
  color: #b0d4f1 !important;
}