/* Common styles for datax.cash website */

:root {
  /* Logo size - change this one value to resize all logos */
  --logo-height: 1.05rem; /* ~17px - reduced by 30% from 24px */
  
  /* Brand colors */
  --brand-primary: #0b2747;
  --brand-secondary: #6b7280;
}

/* Logo styles */
.logo {
  height: var(--logo-height);
  width: auto;
}

/* Alternative logo sizes for special cases */
.logo-small {
  height: 0.875rem; /* ~14px - 30% smaller than original small */
  width: auto;
}

.logo-large {
  height: 1.4rem; /* ~22px - 30% smaller than original large */
  width: auto;
}

/* Brand text styles */
.brand-text {
  color: var(--brand-primary);
}

.brand-secondary {
  color: var(--brand-secondary);
}

/* 
  To change logo size globally, just modify --logo-height in :root
  Examples (all reduced by 30% from original):
  - Extra Small: --logo-height: 0.875rem; (~14px)
  - Small: --logo-height: 1.05rem; (~17px) - Current
  - Medium: --logo-height: 1.4rem; (~22px) 
  - Large: --logo-height: 1.75rem; (~28px)
*/