/* IMV - In My Veins Custom Styles */

:root {
  --primary-color: #dc3545;
  --secondary-color: #e8e8e8;
  --accent-color: #ad1d12;
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a1a1a 0%, #212529 50%, #1a1a1a 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
  position: relative;
}

.loader-logo {
  width: 150px;
  height: auto;
  margin-bottom: 30px;
  animation: logoPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(220, 53, 69, 0.5));
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 20px rgba(220, 53, 69, 0.5));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(220, 53, 69, 0.8));
  }
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(220, 53, 69, 0.1);
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  margin: 0 auto 20px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loader-text {
  color: var(--secondary-color);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: textFade 1.5s ease-in-out infinite;
}

@keyframes textFade {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

body {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  color: #e8e8e8;
  background-color: #212529;
}

/* Navbar - Modern Glassmorphism Style */
.navbar {
  background: rgba(33, 37, 41, 0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(220, 53, 69, 0.2);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 2.5rem;
  letter-spacing: 2px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

/* Nav Links - Modern Style */
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.5rem 1.2rem !important;
  margin: 0 0.2rem;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  text-decoration: none !important;
}

/* Animated underline effect */
.navbar-dark .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-dark .navbar-nav .nav-link:hover::before {
  width: 80%;
}

/* Hover background glow */
.navbar-dark .navbar-nav .nav-link:hover {
  color: #ffffff;
  background: rgba(220, 53, 69, 0.1);
  transform: translateY(-2px);
  text-decoration: none !important;
}

/* Active link style */
.navbar-dark .navbar-nav .nav-link.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.2), rgba(173, 29, 18, 0.2));
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(220, 53, 69, 0.3);
}

.navbar-dark .navbar-nav .nav-link.active::before {
  width: 80%;
}

/* Dropdown Menu */
.dropdown-menu {
  background: rgba(33, 37, 41, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(220, 53, 69, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  border-radius: 12px;
  padding: 0.5rem;
  margin-top: 0.5rem;
}

.dropdown-item {
  color: rgba(255, 255, 255, 0.85);
  transition: all 0.3s ease;
  border-radius: 8px;
  padding: 0.6rem 1rem;
  font-weight: 500;
}

.dropdown-item:hover {
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.2), rgba(173, 29, 18, 0.2));
  color: #ffffff;
  transform: translateX(5px);
}

/* Language dropdown special styling */
.nav-item.dropdown .nav-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-item.dropdown .nav-link i {
  font-size: 1.2rem;
}

/* Hero Banner - Full Width */
.hero-banner {
  width: 100%;
  background-image: url('../images/cover.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  will-change: background-position;
  transition: background-position 0.1s ease-out;
}

.hero-overlay {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(220, 53, 69, 0.4) 50%,
    rgba(0, 0, 0, 0.6) 100%
  );
  padding: 120px 0;
  position: relative;
  backdrop-filter: blur(2px);
}


.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5), 0 0 20px rgba(220, 53, 69, 0.3);
  position: relative;
  z-index: 1;
  animation: heroFadeIn 0.8s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Section (existing cards) */
.hero-section {
  background: linear-gradient(135deg, var(--secondary-color) 0%, #343a40 100%);
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Cards - Dark Theme */
.card {
  background-color: #2d3035;
  border: 1px solid rgba(220, 53, 69, 0.2);
  color: #e8e8e8;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.4);
  border-color: rgba(220, 53, 69, 0.5);
}

.card-body {
  background-color: #2d3035;
  color: #e8e8e8;
}

.card-title {
  color: #ffffff;
  font-weight: 600;
}

.card-subtitle {
  color: #adb5bd !important;
}

.card-text {
  color: #d1d5db;
}

.card-footer {
  background-color: rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(220, 53, 69, 0.2);
}

.card-img-top {
  transition: transform 0.3s ease;
}

.card:hover .card-img-top {
  transform: scale(1.05);
}

/* Card border variants for concerts */
.card.border-primary {
  border-color: rgba(220, 53, 69, 0.5);
  box-shadow: 0 0 20px rgba(220, 53, 69, 0.2);
}

.card.border-primary:hover {
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.6);
}

/* Buttons */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
  color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:visited {
  background-color: #c82333;
  border-color: #bd2130;
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  background-color: transparent;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:visited {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #ffffff;
}

/* Linkek a gombokban - ne változzon a szín */
.btn-primary a,
.btn-outline-primary a {
  color: inherit;
  text-decoration: none;
}

.btn-primary a:visited,
.btn-outline-primary a:visited {
  color: inherit;
}

/* Text color overrides for dark theme */
.text-primary {
  color: var(--primary-color) !important;
}

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

/* Link colors - visited links stay red */
a {
  color: var(--primary-color);
  text-decoration: none !important;
  transition: color 0.3s ease;
}

a:hover {
  color: #c82333;
  text-decoration: none !important;
}

a:visited {
  color: var(--primary-color) !important;
  text-decoration: none !important;
}

a:active,
a:focus {
  color: var(--primary-color);
  text-decoration: none !important;
}

/* Specific override for button links */
a.btn,
a.btn:link,
a.btn:visited,
a.btn:hover,
a.btn:active,
a.btn:focus {
  color: #ffffff !important;
}

a.btn-outline-primary,
a.btn-outline-primary:link {
  color: var(--primary-color) !important;
}

a.btn-outline-primary:visited {
  color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  background-color: transparent !important;
}

a.btn-outline-primary:hover,
a.btn-outline-primary:active,
a.btn-outline-primary:focus {
  color: #ffffff !important;
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

/* Content Area */
.content-area {
  line-height: 1.8;
}

.content-area h1,
.content-area h2,
.content-area h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.content-area img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 1rem 0;
}

/* Footer */
footer {
  margin-top: auto;
  background-color: red;
}

footer a {
  text-decoration: none !important;
  transition: transform 0.3s ease;
  display: inline-block;
}

footer a:hover {
  transform: scale(1.2);
  text-decoration: none !important;
}

/* Social Media Icons */
.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: white;
}

/* Brand Colors */
.social-icon.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0c63d4 100%);
}

.social-icon.youtube {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-icon.instagram {
  background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #f77737 100%);
}

.social-icon.tiktok {
  background: linear-gradient(135deg, #000000 0%, #fe2c55 50%, #00f2ea 100%);
}

.social-icon.soundcloud {
  background: linear-gradient(135deg, #ff8800 0%, #ff5500 100%);
}

.social-icon.bandcamp {
  background: linear-gradient(135deg, #629aa9 0%, #4d7d8a 100%);
}

.social-icon.spotify {
  background: linear-gradient(135deg, #1ed760 0%, #1aa34a 100%);
}

.social-icon.apple {
  background: linear-gradient(135deg, #fc3c44 0%, #d32f2f 100%);
}

@media (max-width: 768px) {
  .social-icons {
    justify-content: center;
    margin-top: 1rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card,
.alert {
  animation: fadeIn 0.5s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .hero-overlay {
    padding: 50px 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .navbar-brand {
    font-size: 1.2rem;
  }

  /* Mobile menu improvements */
  .navbar-collapse {
    background: rgba(33, 37, 41, 0.98);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-top: 1rem;
    padding: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  }

  .navbar-dark .navbar-nav .nav-link {
    margin: 0.3rem 0;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .hero-overlay {
    padding: 40px 0;
  }
}

/* Badge styling - Dark Theme */
.badge {
  font-weight: 500;
  padding: 0.4em 0.8em;
}

.badge.bg-success {
  background-color: #198754 !important;
}

.badge.bg-secondary {
  background-color: #6c757d !important;
}

.badge.bg-primary {
  background-color: var(--primary-color) !important;
}

/* Alert styling - Dark Theme */
.alert {
  border-radius: 12px;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.alert-info {
  background-color: #1a3a52;
  color: #b8daff;
  border-color: #0c5460;
}

.alert-info i {
  color: #5bc0de;
}

.alert-warning {
  background-color: #4d3800;
  color: #fff3cd;
  border-color: #664d03;
}

.alert-danger {
  background-color: #4d1919;
  color: #f8d7da;
  border-color: #842029;
}

/* Loading state */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Image hover effect */
.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
  transform: scale(1.1);
}

.footer_logo {
  background-color: #dc3545; /* piros szín */
  mix-blend-mode: multiply;
}


/* Logo with CSS Mask - színezhető! */
.logo-mask {
  width: 150px;
  height: 80px;
  background-color: #ffffff; /* Alapértelmezett fehér */
  -webkit-mask: url("../images/imv_logo.png") no-repeat center;
  mask: url("../images/imv_logo.png") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  transition: background-color 0.3s ease;
}

/* Logo hover effekt */
.navbar-brand:hover .logo-mask {
  background-color: #ad1d12; /* Sárga hover */
  transform: rotate(5deg);
  transform: scale(1.5);
}

/* Alternatív színek különböző helyzetekhez */
.logo-primary {
  background-color: #dc3545 !important; /* Piros */
}

.logo-secondary {
  background-color: #6c757d !important; /* Szürke */
}

.logo-warning {
  background-color: #ffc107 !important; /* Sárga */
}

.logo-light {
  background-color: #ffffff !important; /* Fehér */
}

.logo-dark {
  background-color: #212529 !important; /* Fekete */
}
.mainn {
  background-color: #212529;
  color: #e8e8e8;
}

/* Social Media Section - Facebook & SoundCloud */
/* Facebook Card Styling */
.facebook-card {
  background: linear-gradient(135deg, #2d3035 0%, #1a1d20 100%);
  border: 1px solid rgba(220, 53, 69, 0.3);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
  min-height: 600px;
  display: flex;
  flex-direction: column;
}

.facebook-card:hover {
  border-color: rgba(220, 53, 69, 0.6);
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(220, 53, 69, 0.3);
}

.facebook-card-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(220, 53, 69, 0.3);
  margin-bottom: 1.5rem;
}

.fb-profile-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--primary-color);
  object-fit: cover;
}

.fb-info h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.fb-info p {
  margin: 0.25rem 0 0 0;
  font-size: 0.95rem;
}

.facebook-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.fb-description {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.fb-stats {
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 1rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #adb5bd;
}

.stat-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.stat-item span {
  font-size: 0.85rem;
}

.fb-activity {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 1rem;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(220, 53, 69, 0.1);
  border-radius: 8px;
  color: #e8e8e8;
  transition: all 0.3s ease;
}

.activity-item:last-child {
  margin-bottom: 0;
}

.activity-item:hover {
  background: rgba(220, 53, 69, 0.2);
  transform: translateX(5px);
}

.activity-item i {
  font-size: 1.2rem;
}

/* Facebook Feed */
.facebook-feed-container {
  width: 100%;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 15px;
}

.facebook-feed-container .fb-page,
.facebook-feed-container .fb-page > span,
.facebook-feed-container .fb-page > span > iframe {
  width: 100% !important;
  max-width: 500px;
}

.facebook-fallback {
  text-align: center;
  padding: 40px 20px;
}

/* SoundCloud */
.soundcloud-wrapper {
  width: 100%;
  height: 600px;
}

.soundcloud-wrapper iframe {
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Social media section titles */
.row .col-lg-6 h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
}

/* Responsive Social Media */
@media (max-width: 991px) {
  .facebook-feed-wrapper {
    min-height: 500px;
  }

  .soundcloud-wrapper {
    height: 500px;
  }

  .soundcloud-wrapper iframe {
    height: 500px;
  }
}

/* Concert List - Full Width Bar Style */
.concert-list {
  width: 100%;
}

.concert-item {
  border-left: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.concert-item:hover {
  border-left-width: 8px;
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(220, 53, 69, 0.4);
}

.concert-city {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5rem;
}

.concert-venue {
  font-size: 1.1rem;
  font-weight: 500;
}

.concert-date {
  color: #e8e8e8;
  font-size: 0.95rem;
}

.concert-date i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.concert-description {
  color: #d1d5db;
  line-height: 1.6;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.concert-action .btn {
  white-space: nowrap;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
}

/* Past concerts styling */
.past-concert {
  border-left: 3px solid rgba(255, 255, 255, 0.2);
  opacity: 0.8;
}

.past-concert:hover {
  opacity: 1;
  border-left-color: rgba(220, 53, 69, 0.5);
  transform: translateX(3px);
}

.past-concert .card-body {
  padding: 1rem 1.5rem;
}

.past-concerts .concert-item {
  margin-bottom: 0.5rem !important;
}

/* Concert export buttons */
.concert-action .btn-group {
  display: flex;
  gap: 0;
}

.concert-action .btn-group .btn {
  flex: 1;
  min-width: 40px;
}

.concert-action .btn-sm {
  padding: 0.35rem 0.75rem;
  font-size: 0.9rem;
}

/* Responsive adjustments for concert items */
@media (max-width: 767px) {
  .concert-item .card-body {
    padding: 1.25rem;
  }

  .concert-city {
    font-size: 1.25rem;
  }

  .concert-venue {
    font-size: 1rem;
  }

  .concert-action {
    width: 100%;
  }

  .concert-action .btn {
    width: 100%;
  }

  .concert-action .btn-group {
    width: 100%;
  }
}

/* Band Members Section */
.band-member {
  transition: transform 0.3s ease;
}

.band-member:hover {
  transform: translateY(-10px);
}

.member-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1a1a1a;
}

.member-image-wrapper:hover {
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.5);
  transform: scale(1.05);
}

.member-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}

.band-member:hover .member-image {
  transform: scale(1.1);
}

.member-name {
  color: #ffffff;
  font-weight: 600;
  margin-top: 1rem;
  font-size: 1.1rem;
}

.member-role {
  color: var(--primary-color) !important;
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Custom 5-column grid for band members */
@media (min-width: 992px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 20%;
  }
}

@media (max-width: 991px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .member-image-wrapper {
    height: 350px;
  }
}

@media (max-width: 767px) {
  .col-lg-2-4 {
    flex: 0 0 auto;
    width: 50%;
  }

  .member-image-wrapper {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .member-image-wrapper {
    height: 250px;
  }

  .member-name {
    font-size: 1rem;
  }

  .member-role {
    font-size: 0.85rem;
  }
}

/* CRITICAL: Force button colors to stay red - Override all Bootstrap defaults */
.btn-outline-primary:link,
.btn-outline-primary:visited,
a.btn-outline-primary:link,
a.btn-outline-primary:visited {
  color: #dc3545 !important;
  border-color: #dc3545 !important;
  background-color: transparent !important;
  text-decoration: none !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
a.btn-outline-primary:hover,
a.btn-outline-primary:focus,
a.btn-outline-primary:active {
  color: #ffffff !important;
  background-color: #dc3545 !important;
  border-color: #dc3545 !important;
  text-decoration: none !important;
}

/* Force primary button colors */
.btn-primary:link,
.btn-primary:visited,
a.btn-primary:link,
a.btn-primary:visited {
  color: #ffffff !important;
  background-color: #dc3545 !important;
  border-color: #dc3545 !important;
  text-decoration: none !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
a.btn-primary:hover,
a.btn-primary:focus,
a.btn-primary:active {
  color: #ffffff !important;
  background-color: #c82333 !important;
  border-color: #bd2130 !important;
  text-decoration: none !important;
}
