:root {
  --bg: #f7f5f0;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-solid: #ffffff;
  --surface-soft: #faf8f4;
  --border: rgba(51, 51, 51, 0.08);
  --border-strong: rgba(51, 51, 51, 0.12);
  --text: #333333;
  --text-soft: #5f5a54;
  --text-muted: #8a837a;
  --primary: #333333;
  --primary-2: #5b544d;
  --primary-3: #b0732b;
  --danger: #bc4d3f;
  --success: #1f7a54;
  --shadow-soft: 0 18px 40px rgba(51, 51, 51, 0.08);
  --shadow-card: 0 26px 60px rgba(51, 51, 51, 0.1);
  --shadow-hover: 0 30px 70px rgba(51, 51, 51, 0.14);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1320px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Open Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(176, 115, 43, 0.1), transparent 24%),
    radial-gradient(circle at top right, rgba(51, 51, 51, 0.05), transparent 28%),
    linear-gradient(180deg, #f7f5f0 0%, #f4f1eb 100%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 200;
  padding: 18px 24px 20px;
}

.navbar-wrapper {
  width: 100%;
}

.main-navbar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 4px;
}

.navbar-shell {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 40px rgba(51, 51, 51, 0.06);
  backdrop-filter: blur(16px);
}

.navbar-container {
  min-height: 92px;
  padding: 0 34px;
  display: flex;
  align-items: center;
  gap: 26px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.navbar-brand img {
  width: 128px;
  height: auto;
  object-fit: contain;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 16px;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff, #faf8f4);
  box-shadow: 0 8px 22px rgba(51, 51, 51, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.menu-button:hover {
  transform: translateY(-1px);
  color: var(--primary-3);
  box-shadow: 0 12px 24px rgba(51, 51, 51, 0.1);
}

.navbar-right {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0 auto;
}

.nav-link,
.dropdown-toggle,
.user-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #333333;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-link:hover,
.dropdown-toggle:hover,
.user-trigger:hover,
.nav-link:focus-visible,
.dropdown-toggle:focus-visible,
.user-trigger:focus-visible {
  color: var(--primary-3);
  outline: none;
}

.join-btn,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  border: 0;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #333333, #333333);
  box-shadow: 0 14px 24px rgba(51, 51, 51, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.join-btn:hover,
.join-btn:focus-visible,
.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 18px 30px rgba(51, 51, 51, 0.2), 0 10px 20px rgba(176, 115, 43, 0.12);
  outline: none;
}

.dropdown,
.user-dropdown-container {
  position: relative;
}

.dropdown-content,
.user-dropdown-menu {
  position: absolute;
  top: calc(100% + 16px);
  min-width: 240px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 50px rgba(51, 51, 51, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  z-index: 50;
}

.dropdown-content {
  left: 0;
}

.user-dropdown-menu {
  right: 0;
}

.dropdown-content a,
.user-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
}

.dropdown-content a:hover,
.user-dropdown-menu a:hover,
.dropdown-content a:focus-visible,
.user-dropdown-menu a:focus-visible,
.dropdown-content a.is-current {
  background: rgba(176, 115, 43, 0.08);
  color: var(--primary-3);
  outline: none;
}

.dropdown.is-open .dropdown-content,
.user-dropdown-container.is-open .user-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-icon {
  font-size: 12px;
}

.user-trigger {
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(247, 245, 240, 0.9);
}

.hello-label {
  color: var(--text-muted);
  font-weight: 700;
}

.user-dropdown-menu .divider {
  height: 1px;
  margin: 8px 18px;
  background: var(--border);
}

.export-page {
  padding-bottom: 56px;
}

.export-hero {
  padding: 18px 0 28px;
}

.export-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
  gap: 26px;
  align-items: stretch;
}

.export-hero-copy,
.hero-highlights {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-soft);
}

.export-hero-copy {
  padding: 40px 42px;
}

.page-eyebrow,
.section-heading span,
.info-badge,
.metric-label {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(176, 115, 43, 0.1);
  color: var(--primary-3);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.export-hero-copy h1,
.section-heading h2 {
  margin: 18px 0 14px;
  font-family: "Montserrat", sans-serif;
  color: #2b2927;
  line-height: 1.06;
}

.export-hero-copy h1 {
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
}

.hero-lead,
.section-heading p,
.metric-subtext,
.highlight-card p,
.info-note,
.export-help,
.rx-footer-description,
.rx-footer-column a,
.rx-footer-copy {
  color: var(--text-soft);
}

.hero-lead {
  margin: 0;
  font-size: 1.03rem;
  line-height: 1.8;
  max-width: 62ch;
}

.hero-highlights {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.highlight-card {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,246,240,0.98));
  border: 1px solid rgba(51, 51, 51, 0.08);
}

.highlight-card h2,
.info-card-top h3 {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.02rem;
}

.highlight-card p,
.info-list span,
.info-note,
.export-help,
.section-heading p {
  margin: 0;
  line-height: 1.7;
  font-size: 0.96rem;
}

.highlight-icon,
.metric-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: rgba(176, 115, 43, 0.12);
  color: var(--primary-3);
  font-size: 1.28rem;
}

.export-section {
  padding: 6px 0 24px;
}

.export-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 24px;
}

.export-card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.export-form-card {
  padding: 34px;
}

.export-label {
  display: block;
  margin-bottom: 10px;
  font-size: 0.97rem;
  font-weight: 700;
  color: #2b2927;
}

.export-input {
  width: 100%;
  min-height: 62px;
  padding: 0 18px;
  border-radius: 20px;
  border: 1px solid rgba(51, 51, 51, 0.12);
  background: linear-gradient(180deg, #fff, #fbf9f5);
  color: #2b2927;
  font-size: 1rem;
  box-shadow: inset 0 1px 2px rgba(51, 51, 51, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.export-input:focus {
  outline: none;
  border-color: rgba(176, 115, 43, 0.46);
  box-shadow: 0 0 0 4px rgba(176, 115, 43, 0.14);
}

.export-help {
  margin-top: 12px;
  font-size: 0.93rem;
}

.medicine-toolbar {
  margin-top: 28px;
}

.medicine-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.medicine-search-input-wrap {
  position: relative;
}

.medicine-search-input-wrap i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.medicine-search-input {
  padding-left: 52px;
}

.medicine-search-btn {
  min-width: 128px;
}

.medicine-results-card {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(51, 51, 51, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(250,248,244,0.9), rgba(255,255,255,0.96));
}

.medicine-results-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
}

.medicine-results-head h3 {
  margin: 0 0 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.08rem;
  color: #2b2927;
}

.medicine-results-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.medicine-results {
  display: grid;
  gap: 12px;
}

.medicine-row,
.medicine-message {
  border-radius: 22px;
  border: 1px solid rgba(51, 51, 51, 0.08);
  background: rgba(255, 255, 255, 0.96);
}

.medicine-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.medicine-row:hover {
  transform: translateY(-1px);
  border-color: rgba(176, 115, 43, 0.26);
  box-shadow: 0 18px 30px rgba(51, 51, 51, 0.06);
}

.medicine-main {
  min-width: 0;
}

.medicine-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: #2b2927;
  line-height: 1.45;
  word-break: break-word;
}

.medicine-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.medicine-strength {
  flex: 0 0 auto;
  align-self: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(176, 115, 43, 0.12);
  color: var(--primary-3);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-align: center;
  white-space: nowrap;
}

.medicine-message {
  padding: 18px;
  color: var(--text-soft);
  text-align: center;
  font-weight: 600;
}

.medicine-message.is-error {
  color: var(--danger);
  border-color: rgba(188, 77, 63, 0.16);
  background: rgba(188, 77, 63, 0.05);
}

.medicine-message.is-loading {
  color: var(--primary-2);
}

.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}

.pagination-controls.is-hidden {
  display: none;
}

.pagination-btn {
  min-width: 110px;
}

.pagination-btn--muted {
  background: linear-gradient(135deg, #8a837a, #6d665f);
}

.pagination-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pagination-indicator {
  min-width: 86px;
  text-align: center;
  font-weight: 700;
  color: #2b2927;
}

.export-info-card {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background:
    radial-gradient(circle at top right, rgba(176, 115, 43, 0.12), transparent 28%),
    rgba(255, 255, 255, 0.92);
}

.info-card-top h3 {
  margin-top: 16px;
}

.info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.info-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.info-list i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(176, 115, 43, 0.12);
  color: var(--primary-3);
  font-size: 0.82rem;
}

.info-note {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(247, 245, 240, 0.95);
  border: 1px solid rgba(51, 51, 51, 0.08);
  line-height: 1.75;
}

.rx-footer {
  padding: 24px;
}

.rx-footer-shell {
  width: min(var(--container), calc(100% - 0px));
  margin: 0 auto;
  padding: 42px 40px 26px;
  border-radius: 36px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #222222 0%, #353535 65%, #1f1f1f 100%);
  box-shadow: 0 34px 80px rgba(24, 24, 24, 0.24);
}

.rx-footer-shell::before,
.rx-footer-shell::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.rx-footer-shell::before {
  width: 360px;
  height: 360px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(176, 115, 43, 0.35), transparent 68%);
}

.rx-footer-shell::after {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}

.rx-footer-top,
.rx-footer-bottom {
  position: relative;
  z-index: 1;
}

.rx-footer-top {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(0, 1.9fr);
  gap: 34px;
  align-items: start;
}

.rx-footer-logo-link {
  display: inline-flex;
}

.rx-footer-logo {
  width: 158px;
}

.rx-footer-description {
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.85;
}

.rx-footer-emergency {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.rx-footer-emergency-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(176, 115, 43, 0.18);
  color: #f3d1a0;
}

.rx-footer-emergency-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
  font-weight: 700;
}

.rx-footer-emergency-number {
  text-decoration: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
}

.rx-footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.rx-footer-column h4 {
  position: relative;
  margin: 0 0 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}

.rx-footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 42px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #b0732b, transparent);
}

.rx-footer-column a,
.rx-contact-item,
.rx-footer-copy {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  font-size: 0.94rem;
}

.rx-footer-column a:hover,
.rx-footer-column a:focus-visible,
.rx-social-link:hover,
.rx-social-link:focus-visible {
  color: #f3d1a0;
  outline: none;
}

.rx-footer-column:not(.rx-footer-contact):not(.rx-footer-form-col) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rx-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.75;
  margin-bottom: 14px;
}

.rx-contact-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: #f3d1a0;
  flex: 0 0 auto;
  margin-top: 2px;
}

.rx-contact-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rx-footer-form {
  display: grid;
  gap: 12px;
}

.rx-footer-input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.rx-footer-input::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.rx-footer-submit {
  min-height: 48px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #b0732b, #8a5a20);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 18px 26px rgba(176, 115, 43, 0.18);
}

.rx-footer-submit:hover,
.rx-footer-submit:focus-visible {
  filter: brightness(1.06);
  transform: translateY(-1px);
  outline: none;
}

.footer-form-feedback {
  min-height: 18px;
  margin: 0;
  color: #f3d1a0;
  font-size: 0.85rem;
}

.rx-footer-bottom {
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.rx-footer-copy {
  margin: 0;
}

.rx-footer-socials {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rx-social-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

@media (max-width: 1180px) {
  .export-hero-shell,
  .export-layout,
  .rx-footer-top,
  .rx-footer-links {
    grid-template-columns: 1fr;
  }

  .rx-footer-links {
    gap: 20px;
  }
}

@media (max-width: 1080px) {
  .site-header,
  .export-page,
  .rx-footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .page-shell {
    width: 100%;
  }

  .navbar-container {
    min-height: 78px;
    padding: 14px 18px;
    flex-wrap: wrap;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .navbar-right {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    padding: 4px 0 10px;
  }

  .navbar-right.is-open {
    display: flex;
  }

  .nav-center {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin: 0;
  }

  .nav-link,
  .dropdown-toggle,
  .join-btn {
    width: 100%;
    min-height: 50px;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(247, 245, 240, 0.82);
  }

  .dropdown-content,
  .user-dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .dropdown.is-open .dropdown-content,
  .user-dropdown-container.is-open .user-dropdown-menu {
    display: block;
  }

  .user-dropdown-container {
    width: 100%;
  }

  .user-trigger {
    width: 100%;
    justify-content: center;
  }

  .export-hero-copy,
  .hero-highlights,
  .export-card,
  .rx-footer-shell {
    border-radius: 26px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding-top: 14px;
  }

  .export-hero-copy,
  .export-form-card,
  .export-info-card,
  .rx-footer-shell,
  .medicine-results-card {
    padding: 24px;
  }

  .highlight-card {
    grid-template-columns: 1fr;
  }

  .medicine-search-row,
  .medicine-row,
  .export-footer-row,
  .rx-footer-bottom {
    grid-template-columns: 1fr;
    justify-content: stretch;
    flex-direction: column;
    align-items: stretch;
  }

  .medicine-strength {
    justify-self: start;
  }

  .medicine-search-btn,
  .pagination-btn {
    width: 100%;
  }

  .pagination-controls {
    flex-direction: column;
  }

  .rx-footer-socials {
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .navbar-brand img {
    width: 112px;
  }

  .export-hero-copy h1,
  .section-heading h2 {
    line-height: 1.12;
  }
}
.medicine-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.medicine-main {
  flex: 1;
  min-width: 0;
}

.medicine-name {
  display: block;
  font-weight: 700;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.medicine-strength {
  flex: 0 0 auto;
  max-width: 220px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: right;
}