.main-header {
  border-bottom: 2px solid;
  background-color: #ffffff;
  color: #174a84;
  border-color: rgba(var(--primary-rgb), 0.18);
  padding: 12px 36px;
  max-height: 80px;
  display: flex;
  align-items: center;
}

.main-header .header-logo {
  height: 24px;
  width: auto;
}

.main-header .header-text {
  font-size: 14px;
  line-height: 1.2;
  color: #174a84;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.main-header .btn-primary,
.main-header .btn-secondary {
  border-radius: 9px;
  font-size: 12px;
  padding: 6px 12px;
  min-width: 100px;
}

.main-header .btn-primary {
  background-color: #aaffbe;
  color: #174a84;
  border: none;
}

.main-header .btn-secondary {
  background-color: #174a84;
  color: #ffffff;
  border: none;
}

.main-header .btn-primary:hover,
.main-header .btn-secondary:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .main-header .header-text {
    font-size: 12px;
    white-space: nowrap;
  }

  .main-header .btn-primary,
  .main-header .btn-secondary {
    padding: 4px 8px;
    font-size: 11px;
    min-width: 90px;
  }

  .main-header .d-flex {
    gap: 2px;
  }
}
