.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-justify {
  text-align: justify;
}

.text-primary {
  color: #8b0e0e;
}

.text-secondary {
  color: #d4af37;
}

.text-muted {
  color: #666666;
}

.text-success {
  color: #27ae60;
}

.text-danger {
  color: #e74c3c;
}

.text-bold {
  font-weight: 700;
}

.text-white {
  color: #ffffff;
}

.m-0 {
  margin: 0;
}

.m-xs {
  margin: 4px;
}

.m-sm {
  margin: 8px;
}

.m-md {
  margin: 12px;
}

.m-lg {
  margin: 16px;
}

.m-xl {
  margin: 24px;
}

.m-2xl {
  margin: 32px;
}

.mt-lg {
  margin-top: 16px;
}

.mt-xl {
  margin-top: 24px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: 8px;
}

.mb-md {
  margin-bottom: 12px;
}

.mb-lg {
  margin-bottom: 16px;
}

.mb-xl {
  margin-bottom: 24px;
}

.p-0 {
  padding: 0;
}

.p-lg {
  padding: 16px;
}

.p-xl {
  padding: 24px;
}

.px-lg {
  padding-left: 16px;
  padding-right: 16px;
}

.py-lg {
  padding-top: 16px;
  padding-bottom: 16px;
}

.bg-primary {
  background-color: #8b0e0e;
  color: #ffffff;
}

.bg-secondary {
  background-color: #d4af37;
}

.bg-gray {
  background-color: #f8f8f8;
}

.bg-white {
  background-color: #ffffff;
}

.border {
  border: 1px solid #e0e0e0;
}

.border-top {
  border-top: 1px solid #e0e0e0;
}

.border-bottom {
  border-bottom: 1px solid #e0e0e0;
}

.rounded {
  border-radius: 8px;
}

.rounded-lg {
  border-radius: 12px;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shadow {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-lg {
  gap: 16px;
}

.gap-xl {
  gap: 24px;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-75 {
  opacity: 0.75;
}

.opacity-100 {
  opacity: 1;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.cursor-not-allowed {
  cursor: not-allowed;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.aspect-square {
  aspect-ratio: 1;
}

.aspect-video {
  aspect-ratio: 1.7777777778;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.max-w-full {
  max-width: 100%;
}

@media print {
  * {
    background: transparent !important;
    color: #000000 !important;
    text-shadow: none !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]::after {
    content: " (" attr(href) ")";
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  h1,
  h2,
  h3 {
    page-break-after: avoid;
  }
  ul,
  ol {
    page-break-inside: avoid;
  }
}
