.flex {
  display: flex;
}
.inline-block {
  display: inline-block;
}
.text-center {
  text-align: center;
}
.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-start {
  justify-content: flex-start;
}
.flex-1 {
  flex: 1;
}
.flex-0-100 {
  flex: 0 0 100px;
}
.flex-0-200 {
  flex: 0 0 200px;
}
.gap-4 {
  gap: 16px;
}
.gap-6 {
  gap: 24px;
}
.grid {
  display: grid;
}
.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.space-y-4 > * + * {
  margin-top: 16px;
}
.m-0 {
  margin: 0;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mt-5 {
  margin-top: 20px;
}
.mb-2 {
  margin-bottom: 8px;
}
.mb-5 {
  margin-bottom: 20px;
}
.mb-6 {
  margin-bottom: 24px;
}
.p-2 {
  padding: 8px;
}
.p-3 {
  padding: 12px;
}
.p-5 {
  padding: 20px;
}
.p-6 {
  padding: 24px;
}
.p-4 {
  padding: 16px;
}
.text-10px {
  font-size: 10px;
}
.text-sm {
  font-size: 12px;
}
.text-lg {
  font-size: 16px;
}
.text-2xl {
  font-size: 20px;
}
.text-3xl {
  font-size: 24px;
}
.text-base {
  font-size: 14px;
}
.fw-medium {
  font-weight: 500;
}
.fw-bold {
  font-weight: 700;
}
.font-arial {
  font-family: Arial, sans-serif;
}
.leading-relaxed {
  line-height: 1.6;
}
.bg-white {
  background-color: #ffffff;
}
.bg-gray-100 {
  background-color: #f3f4f6;
}
.bg-red-600 {
  background-color: #c00000;
}
.bg-blue-500 {
  background-color: #007bff;
}
.text-white {
  color: #ffffff;
}
.text-navy {
  color: #000033;
}
.text-orange-400 {
  color: #ff9f54;
}
.text-gray-500 {
  color: #6b7280;
}
.text-gray-700 {
  color: #374151;
}
.text-gray-600 {
  color: #4b5563;
}
.border-none {
  border: none;
}
.border-0 {
  border: none;
}
.border-1 {
  border-width: 1px;
}
.border-2 {
  border-width: 2px;
}
.border-solid {
  border-style: solid;
}
.border-r {
  border-right: 2px solid #4b5563;
}
.border-gray-300 {
  border-color: #d1d5db;
}
.border-gray-600 {
  border-color: #4b5563;
}
.border-gray-400 {
  border-color: #9ca3af;
}
.rounded-none {
  border-radius: 0;
}
.rounded {
  border-radius: 4px;
}
.rounded-full {
  border-radius: 9999px;
}
.shadow {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.w-full {
  width: 100%;
}
.w-90 {
  width: 90%;
}
.w-20 {
  width: 80px;
}
.w-24 {
  width: 96px;
}
.w-32 {
  width: 128px;
}
.max-w-90 {
  max-width: 90%;
}
.max-w-210mm {
  max-width: 210mm;
}
.h-60 {
  min-height: 60px;
}
.h-400 {
  min-height: 400px;
}
.h-full {
  height: 100%;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.overflow-hidden {
  overflow: hidden;
}
.cursor-pointer {
  cursor: pointer;
}
.uppercase {
  text-transform: uppercase;
}
.no-underline {
  text-decoration: none;
}
.transition-colors {
  transition: background-color 0.3s ease;
}
.border-collapse {
  border-collapse: collapse;
}
.w-6 {
  width: 24px;
}
.h-6 {
  height: 24px;
}
.h-auto {
  height: auto;
}
.mx-70 {
  margin-left: 80%;
  margin-right: 80%;
}
.bottom-0 {
  bottom: 0;
}
.right-0 {
  right: 0;
}
.flex-col {
  flex-direction: column;
}
.space-y-2 > * + * {
  margin-top: 8px;
}
.items-end {
  align-items: flex-end;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.mt-80 {
  margin-top: 80px;
}
