@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  background-color: #1A1A1A;
  color: #E5E5E5;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.display-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-navbar {
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid #404040;
}
.main-navbar.scrolled {
  background: rgba(15, 15, 15, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.main-navbar .navbar-brand {
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #3B82F6;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.main-navbar .navbar-brand .brand-icon {
  font-size: 1.8rem;
  color: #F59E0B;
}
.main-navbar .nav-link {
  color: #E5E5E5;
  font-weight: 400;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}
.main-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #3B82F6;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.main-navbar .nav-link:hover {
  color: #3B82F6;
}
.main-navbar .nav-link:hover::after {
  width: 80%;
}
.main-navbar .nav-link.active {
  color: #3B82F6;
}
.main-navbar .nav-link.active::after {
  width: 80%;
}
.main-navbar .server-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 50px;
}
.main-navbar .server-status .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10B981;
  animation: pulse 2s infinite;
}
.main-navbar .server-status .status-text {
  font-size: 0.875rem;
  font-weight: 500;
  color: #10B981;
}
.main-navbar .server-status .player-count {
  font-size: 0.875rem;
  color: #E5E5E5;
}

.main-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  min-height: 100vh;
}

main > .container:first-child {
  padding-top: 2rem;
}

.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
}
.hero-section .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  background-image: radial-gradient(circle at 20% 50%, #3B82F6 0%, transparent 50%), radial-gradient(circle at 80% 80%, #10B981 0%, transparent 50%);
  z-index: -1;
}
.hero-section .hero-content {
  position: relative;
  z-index: 2;
}
.hero-section .hero-content .hero-subtitle {
  font-size: 1.25rem;
  color: #3B82F6;
  margin-bottom: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-section .hero-content .hero-description {
  font-size: 1.125rem;
  color: #E5E5E5;
  margin-bottom: 2rem;
  max-width: 600px;
}
.hero-section .hero-content .hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}
.hero-section .hero-content .hero-stats .stat-box {
  background: #262626;
  border: 1px solid #404040;
  padding: 1rem 1.5rem;
  border-radius: 8px;
}
.hero-section .hero-content .hero-stats .stat-box .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #3B82F6;
  font-family: "Poppins", sans-serif;
}
.hero-section .hero-content .hero-stats .stat-box .stat-label {
  font-size: 0.875rem;
  color: #A3A3A3;
}

.btn {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn.btn-primary {
  background: #3B82F6;
  color: white;
}
.btn.btn-primary:hover {
  background: rgb(11.1512195122, 99.1219512195, 242.8487804878);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}
.btn.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid #404040;
}
.btn.btn-secondary:hover {
  background: #262626;
  border-color: #3B82F6;
  color: #3B82F6;
}
.btn.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.card {
  background: #262626;
  border: 1px solid #404040;
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}
.card:hover {
  border-color: #3B82F6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: rgba(59, 130, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #3B82F6;
}
.card .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #FFFFFF;
}
.card .card-description {
  color: #E5E5E5;
  line-height: 1.6;
}

.section {
  padding: 5rem 0;
  position: relative;
}
.section.section-dark {
  background: #0F0F0F;
}
.section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section .section-header .section-subtitle {
  color: #3B82F6;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.section .section-header .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #FFFFFF;
}
.section .section-header .section-description {
  color: #E5E5E5;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.stats-section {
  background: #0F0F0F;
  padding: 3rem 0;
  border-top: 1px solid #404040;
  border-bottom: 1px solid #404040;
}
.stats-section .stats-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.stats-section .stats-container .stat-card {
  text-align: center;
}
.stats-section .stats-container .stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #3B82F6;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.5rem;
}
.stats-section .stats-container .stat-card .stat-label {
  color: #E5E5E5;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.main-footer {
  background: #0F0F0F;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid #404040;
  position: relative;
  z-index: 2;
}
.main-footer .footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.main-footer .footer-content .footer-section h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
  font-weight: 600;
}
.main-footer .footer-content .footer-section ul {
  list-style: none;
  padding: 0;
}
.main-footer .footer-content .footer-section ul li {
  margin-bottom: 0.5rem;
}
.main-footer .footer-content .footer-section ul li a {
  color: #A3A3A3;
  text-decoration: none;
  transition: color 0.2s ease;
}
.main-footer .footer-content .footer-section ul li a:hover {
  color: #3B82F6;
}
.main-footer .footer-content .footer-brand h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}
.main-footer .footer-content .footer-brand .brand-description {
  color: #A3A3A3;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.main-footer .footer-content .footer-brand .social-links {
  display: flex;
  gap: 1rem;
}
.main-footer .footer-content .footer-brand .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #262626;
  border: 1px solid #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E5E5E5;
  transition: all 0.2s ease;
}
.main-footer .footer-content .footer-brand .social-links a:hover {
  background: #3B82F6;
  border-color: #3B82F6;
  color: white;
  transform: translateY(-2px);
}
.main-footer .footer-bottom {
  border-top: 1px solid #404040;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.main-footer .footer-bottom .copyright {
  color: #A3A3A3;
  font-size: 0.875rem;
}
.main-footer .footer-bottom .footer-links {
  display: flex;
  gap: 2rem;
}
.main-footer .footer-bottom .footer-links a {
  color: #A3A3A3;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}
.main-footer .footer-bottom .footer-links a:hover {
  color: #3B82F6;
}

.form-container {
  max-width: 500px;
  margin: 0 auto;
}
.form-container .form-card {
  background: #262626;
  border: 1px solid #404040;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}
.form-container .form-header {
  text-align: center;
  margin-bottom: 2rem;
}
.form-container .form-header .form-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}
.form-container .form-header .form-subtitle {
  color: #A3A3A3;
}
.form-container .form-group {
  margin-bottom: 1.5rem;
}
.form-container .form-group label {
  display: block;
  color: #FFFFFF;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.form-container .form-group .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #1A1A1A;
  border: 1px solid #404040;
  border-radius: 6px;
  color: #FFFFFF;
  font-size: 1rem;
  transition: all 0.2s ease;
}
.form-container .form-group .form-control:focus {
  outline: none;
  border-color: #3B82F6;
  background: rgb(20.9, 20.9, 20.9);
}
.form-container .form-group .form-control::placeholder {
  color: #A3A3A3;
}
.form-container .form-group .form-text {
  font-size: 0.875rem;
  color: #A3A3A3;
  margin-top: 0.25rem;
}
.form-container .form-group .text-danger {
  font-size: 0.875rem;
  color: #EF4444;
  margin-top: 0.25rem;
}

.alert {
  padding: 1rem 1.5rem;
  border-radius: 6px;
  margin-bottom: 1rem;
}
.alert.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #10B981;
}
.alert.alert-danger {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #EF4444;
}

/* Dark Theme Table Styling - Fix white-on-white text issues */
.table {
  background-color: #2A2A2A;
  color: #E5E5E5;
}

.table th {
  background-color: #1F1F1F;
  color: #FFFFFF;
  border-color: #404040;
}

.table td {
  background-color: #2A2A2A;
  color: #E5E5E5;
  border-color: #404040;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-hover tbody tr:hover {
  background-color: rgba(59, 130, 246, 0.1);
  color: #FFFFFF;
}

.table-secondary {
  background-color: rgba(108, 117, 125, 0.2) !important;
  color: #A3A3A3 !important;
}

.badge {
  color: #FFFFFF;
}

.badge-success {
  background-color: #10B981;
}

.badge-warning {
  background-color: #F59E0B;
}

.badge-danger {
  background-color: #EF4444;
}

.badge-secondary {
  background-color: #6B7280;
}

.text-muted {
  color: #9CA3AF !important;
}

.font-weight-bold {
  color: #FFFFFF;
}

small.text-muted {
  color: #9CA3AF !important;
}
.alert.alert-warning {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #F59E0B;
}
.alert.alert-info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #3B82F6;
}

@keyframes pulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.text-gradient {
  background: linear-gradient(135deg, #3B82F6 0%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }
  .hero-section .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
  }
  .section {
    padding: 3rem 0;
  }
  .display-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }
  .main-navbar .navbar-nav {
    background: rgba(15, 15, 15, 0.98);
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #404040;
  }
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0F0F0F;
}

::-webkit-scrollbar-thumb {
  background: #404040;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgb(89.5, 89.5, 89.5);
}

.server-quick-info {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.server-quick-info .info-item {
  font-size: 0.875rem;
  color: #A3A3A3;
}
.server-quick-info .info-item i {
  color: #3B82F6;
  margin-right: 0.5rem;
}

.server-stats-section {
  background: #0F0F0F;
  padding: 2rem 0;
  border-top: 1px solid #404040;
  border-bottom: 1px solid #404040;
  margin: -2rem 0 0 0;
}
.server-stats-section .stat-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #262626;
  border: 1px solid #404040;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.server-stats-section .stat-box:hover {
  transform: translateY(-2px);
  border-color: #3B82F6;
}
.server-stats-section .stat-box .stat-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  font-size: 1.25rem;
  color: #3B82F6;
}
.server-stats-section .stat-box .stat-content {
  flex: 1;
}
.server-stats-section .stat-box .stat-content .stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: #FFFFFF;
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.server-stats-section .stat-box .stat-content .stat-label {
  font-size: 0.875rem;
  color: #A3A3A3;
  margin: 0;
}

.info-card {
  background: #262626;
  border: 1px solid #404040;
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
}
.info-card .info-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #FFFFFF;
}
.info-card .info-link {
  display: inline-block;
  margin-top: 1rem;
  color: #3B82F6;
  font-size: 0.875rem;
  text-decoration: none;
}
.info-card .info-link:hover {
  text-decoration: underline;
}

.server-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.server-info-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(64, 64, 64, 0.5);
  font-size: 0.875rem;
}
.server-info-list li:last-child {
  border-bottom: none;
}
.server-info-list li .label {
  color: #A3A3A3;
}
.server-info-list li .value {
  color: #E5E5E5;
  font-weight: 500;
}

.news-list .news-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(64, 64, 64, 0.5);
}
.news-list .news-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.news-list .news-item .news-date {
  font-size: 0.75rem;
  color: #A3A3A3;
  margin-bottom: 0.25rem;
}
.news-list .news-item .news-title {
  color: #E5E5E5;
  text-decoration: none;
  font-size: 0.875rem;
}
.news-list .news-item .news-title:hover {
  color: #3B82F6;
}

.top-players-list .player-rank {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(64, 64, 64, 0.5);
  font-size: 0.875rem;
}
.top-players-list .player-rank:last-child {
  border-bottom: none;
}
.top-players-list .player-rank .rank-number {
  width: 30px;
  height: 30px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #3B82F6;
  font-size: 0.875rem;
}
.top-players-list .player-rank:nth-child(1) .rank-number {
  background: rgba(255, 215, 0, 0.2);
  color: #FFD700;
}
.top-players-list .player-rank:nth-child(2) .rank-number {
  background: rgba(192, 192, 192, 0.2);
  color: #C0C0C0;
}
.top-players-list .player-rank:nth-child(3) .rank-number {
  background: rgba(205, 127, 50, 0.2);
  color: #CD7F32;
}
.top-players-list .player-rank .player-info {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.top-players-list .player-rank .player-name {
  color: #E5E5E5;
  font-weight: 500;
}
.top-players-list .player-rank .player-guild {
  color: #3B82F6;
  font-size: 0.75rem;
  opacity: 0.8;
}
.top-players-list .player-rank .player-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
  align-items: center;
}
.top-players-list .player-rank .player-class {
  color: #A3A3A3;
  font-size: 0.75rem;
  background: rgba(64, 64, 64, 0.3);
  padding: 0.125rem 0.5rem;
  border-radius: 3px;
}
.top-players-list .player-rank .player-level {
  color: #3B82F6;
  font-weight: 600;
  font-size: 0.8125rem;
}
.top-players-list .player-rank .player-bp {
  color: #F59E0B;
  font-size: 0.75rem;
  font-weight: 500;
}
.top-players-list .player-rank .player-pk {
  color: #EF4444;
  font-size: 0.75rem;
  font-weight: 500;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.market-grid .market-item {
  background: #262626;
  border: 1px solid #404040;
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}
.market-grid .market-item:hover {
  transform: translateY(-2px);
  border-color: #3B82F6;
}
.market-grid .market-item .item-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.market-grid .market-item .item-icon.weapon {
  background: rgba(239, 68, 68, 0.1);
}
.market-grid .market-item .item-icon.armor {
  background: rgba(59, 130, 246, 0.1);
}
.market-grid .market-item .item-icon.accessory {
  background: rgba(168, 85, 247, 0.1);
}
.market-grid .market-item .item-icon.misc {
  background: rgba(245, 158, 11, 0.1);
}
.market-grid .market-item .item-details {
  flex: 1;
}
.market-grid .market-item .item-details .item-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #FFFFFF;
  margin: 0 0 0.25rem 0;
}
.market-grid .market-item .item-details .item-stats {
  font-size: 0.75rem;
  color: #A3A3A3;
  margin: 0;
}
.market-grid .market-item .item-price {
  text-align: right;
}
.market-grid .market-item .item-price .price-amount {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #F59E0B;
}
.market-grid .market-item .item-price .price-label {
  font-size: 0.75rem;
  color: #A3A3A3;
}

.events-timeline .event-item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(64, 64, 64, 0.5);
}
.events-timeline .event-item:last-child {
  border-bottom: none;
}
.events-timeline .event-item .event-time {
  font-weight: 600;
  color: #3B82F6;
  font-size: 0.875rem;
}
.events-timeline .event-item .event-name {
  color: #E5E5E5;
  font-size: 0.875rem;
}
.events-timeline .event-item .event-status {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
}
.events-timeline .event-item .event-status.upcoming {
  background: rgba(245, 158, 11, 0.1);
  color: #F59E0B;
}
.events-timeline .event-item .event-status.live {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
}

.quick-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.quick-links .quick-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid transparent;
  border-radius: 6px;
  color: #E5E5E5;
  text-decoration: none;
  transition: all 0.2s ease;
}
.quick-links .quick-link:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #3B82F6;
  color: #3B82F6;
  transform: translateX(4px);
}
.quick-links .quick-link i {
  width: 20px;
  text-align: center;
  color: #3B82F6;
}

/*# sourceMappingURL=site.css.map */

/* GM Drop Management Interface Text Visibility Fixes */
.card-header h5,
.card-header .mb-0,
.card-title,
h2, h3, h4, h5 {
  color: #FFFFFF !important;
  font-weight: 600;
}

.card-header {
  background-color: #2D2D2D !important;
  border-bottom: 1px solid #404040;
  color: #FFFFFF !important;
}

.card {
  background-color: #1F1F1F !important;
  border: 1px solid #404040;
  color: #E5E5E5 !important;
}

.table-dark th,
.table-dark td {
  color: #FFFFFF !important;
  border-color: #404040;
}

.badge {
  color: #FFFFFF !important;
}

.text-muted {
  color: #B0B0B0 !important;
}

.alert {
  color: #FFFFFF !important;
}

/* ---- TrinityConquer custom overrides ---- */
.modal {
  z-index: 1080 !important; /* above navbar and backdrop */
}
.modal-backdrop {
  z-index: 1070 !important; /* below modal, above content */
  pointer-events: none;     /* don't block clicks if ordering issue */
}
/* ---------------------------------------- */

/* input-group alignment fix */
.input-group {
  display:flex; align-items:center; flex-direction:row !important; flex-wrap:nowrap !important;
}
.input-group>.input-group-text,
.input-group>.btn {
  padding: 0.65rem 1rem !important;
  border-radius:6px;
}
.input-group-text {
  border-right:0;
}
.input-group .form-control {
  border-left:0;
}

/* Align form-control height with input-group addons */
.form-container .form-group .form-control {
  padding: 0.65rem 1rem !important;
}
