@font-face {
  font-family: 'fbphilosof-bold';
  src: url('uploads/FBPHILOSOF-BOLD.TTF') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap; /* improves loading performance */
}

@font-face {
  font-family: 'fbphilosof-black';
  src: url('uploads/FBPHILOSOF-BLACK.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'fbphilosof-regular';
  src: url('uploads/FBPHILOSOF-REGULAR.TTF') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap; 
}


    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      font-family: 'fbphilosof-regular', Arial, sans-serif;
      font-size: 18px;
      background: #f9f9f9;
      
    }

    /* Put CSS variables near top to avoid cascade/parse interactions */
    :root {
      --alt-bg-url: url('https://lonesoldiercenter.com/pages/etc/plateBG.jpg');
      --hr-height: 8px; /* change for thicker/thinner line */
        --gap: 16px;
      --max-width: 900px;
      --bg: #f7f9fc;
      --card-bg: #ffffff;
      --accent: #2b79ff;
      --border: #e3e8ef;
      --radius: 10px;
     
    }

    .hideMe {
      display: none;
    }

/* Navbar Container */
.navbar {
  position: -webkit-sticky; /* Support for Safari */
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: white;
  /* background-image: url('https://lonesoldiercenter.com/pages/etc/plateBG.jpg'); */
  padding: 1rem 0;
  /* Shadow Effect */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  direction: rtl; 
  height: 100px;
  padding: 30px
  
}

/* Flexbox Layout */
 .navbar-container-menu {
 /* display: flex;
  align-items: center;
  justify-content: space-between;
   max-width: 1200px; 
  margin: 0 auto;
  padding: 0 1rem;
  position: relative; */
  display: inline;
}

.nav-logo {
  position: absolute; 
  right: 5rem; 
  top: 50%; 
  transform: translateY(-50%);
}

.nav-logo img {
  height: 80px; 
  width: auto;
}

/* Menu Styling */
.nav-menu {
  list-style: none;
  display: flex;
  margin-top: 10px;
  padding: 0;
}

.nav-menu li {
  margin-right: 20px;
}

.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #007bff;
}





.hamburger {
   display: flex; 
  flex-direction: column;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: black;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile menu styles */
#mobileMenu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: rgba(0, 0, 0, 0.9); /* Black with transparency */
  width: 40%;
  /*padding: 1rem 0;*/
  list-style: none;
  margin: 0;
  z-index: 1000;
  text-align: right;
  
}

#mobileMenu li {
  border-bottom: 2px solid rgb(255, 255, 255);
 
}

#mobileMenu a {
  color: white;
  text-decoration: none;
  padding: 0.75rem 1rem;
  display: block;
  font-size: 1.1rem;
 
  
}

/* Hamburger active state (X icon) */
.hamburger.active .bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}


/* Black line stuck to each side of the plate cards */


/* Cart button */
.cart-container {
  display: block;
}

/* Tablet/mobile styles */




#searchInput {
  padding: 8px;
  width: 100%;
  max-width: 300px;
  margin: 20px auto;
  display: inline-block;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
}

#resetSearch {
  display: block;
  margin: 10px auto;
  padding: 8px 16px;
  background-color: #007bff;
  color: white;
  border: none;
  font-size: 16px;
  cursor: pointer;
}


#searchResults {
  display: none;
  padding: 8px;
  width: 100%;
  max-width: 400px;
  margin: 20px auto;  
  font-size: 22px;
  box-sizing: border-box;
  background-color: white; 
  color: black;
  cursor: pointer;
}

    .artist-hover {
      background-color: #F2E53A !important;
    }


      
 /* Search Modal */
    #searchModal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      z-index: 2000;
      justify-content: flex-start;
      align-items: center;
      padding-top: 80px;
    }
    #searchModalContent {
      background: white;
      width: 90%;
      max-width: 600px;
      border-radius: 12px;
      padding: 24px;
      direction: rtl;
      position: relative;
      margin: 0 auto;
    }
    .modal-close {
      position: absolute;
      top: 12px;
      left: 12px;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: #555;
    }
    #modalSearchInput {
      width: 100%;
      padding: 12px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 6px;
      direction: ltr;
      font-family: Arial, sans-serif;
    }
    #modalSearchResults {
      margin-top: 16px;
      max-height: 300px;
      overflow-y: auto;
    }
    .modal-result {
      padding: 12px;
      border-bottom: 1px solid #f0f0f0;
      cursor: pointer;
      transition: background 0.15s;
      font-family: Almoni, Arial, sans-serif;
    }
    .modal-result:hover {
      background: #f0f8ff;
    }
    .modal-empty {
      padding: 12px;
      color: #888;
      font-style: italic;
    }
    .search-trigger {
      background: none;
      border: none;
      font-size: 20px;
      cursor: pointer;
      color: #333;
      padding: 8px;
      margin-right: 10px;
    }



    .grid-container {
      display: grid;
       grid-template-columns: repeat(2, 1fr); direction: rtl; 
      max-width: 1400px;
      margin: 0 auto;
      
    }
    .plate-card {
    
       display:grid;
      grid-template-columns: 50% 50%;
      /* grid-auto-rows: minmax(120px, auto); */
      gap: var(--gap);


      background: white;
     /*  border-radius: 8px; */
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      /* overflow: hidden; */
      transition: transform 0.2s;
      /* flex-direction: column; 
      font-family: 'fbphilosof-regular', Verdana, Geneva, Tahoma, sans-serif;*/
      position: relative;
  overflow: visible !important;
  direction: ltr;
      
    }

    .plate-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 100px;
  background: #000;
  z-index: 1;
}

/* .plate-card .status-banner {
  position: absolute;
  top: 200px;
  left: 100px;
  width: 160px;
  background: #d9534f; 
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  padding: 6px 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  pointer-events: none;
} */

.plate-card .status-banner {
  position: absolute;
  top: 50%;
  left: -40px;
  width: calc(100% + 80px);
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  font-weight: bold;
  font-size: 20px;
  padding: 6px 0;
  transform: rotate(-30deg);
  z-index: 10;
  pointer-events: none;
}

.plate-card.reserved .status-banner {
  background: #f0ad4e; /* orange for "Reserved" */
}


    .plate-card:hover {
      transform: translateY(-4px);
    }
    .plate-card img {
      width: 100%;
      height: auto;
      object-fit: cover;
      display: block;
      
    }
    .plate-info-hebrew {
      margin-right: 40px;
      padding: 8px;
      text-align: right;
      direction: rtl;
      line-height: 0.950;
    
    }

    .plate-info-hebrew p:nth-child(1) {
  font-weight: bolder;
  font-size: 24px;
}

   .plate-info-english p:nth-child(1) {
  font-weight: bolder;
  font-size: 20px;
}

    .plate-info-english {
      font-family: Helvetica;
      margin-right: 40px;
      padding: 8px;
      text-align: right;
      line-height: 0.950;
      font-size: 16px;
      
    }
    .plate-info h3 {
      font-size: 16px;
      color: #333;
      margin-bottom: 6px;
    }
    .plate-info p {
      font-size: 14px;
      color: #666;
    }
    .plate-actions {
      left: 35%;
      text-align: left;
      padding: 8px 0;
    }
    .loading {
      text-align: center;
      padding: 30px;
      font-style: italic;
      color: #888;
    }
     .btn {
      display: inline-block;
      padding: 4px 14px;
      background: #000000;
      color: white;
      text-decoration: none;
      /* border-radius: 6px; */
      font-size: 16px;
      cursor: pointer;
      border: none;
      margin: 5px 0px 20px 15px;
    }
   
    .btn:disabled {
      background: #ccc;
      cursor: not-allowed;
    }

     /* Alternating background image / white background
       - Replace the URL in --alt-bg-url with your image link. */



.grid-container > .plate-card:nth-child(4n+1),
.grid-container > .plate-card:nth-child(4n+4) {
  background-image: var(--alt-bg-url);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

    .plate-divider {
      height: var(--hr-height);
      background: #000;
      width: 60%; 
        margin: 12px auto 0 auto;
    }

    /* Bottom HR behavior: groups of 3 cards
       1st in group -> HR on left 1/3
       2nd in group -> HR centered (middle 1/3)
       3rd in group -> HR on rightmost 1/3 */
.grid-container > .plate-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  height: var(--hr-height);
  width: 45%; /* same as your --hr-height-based line */
  background: #000;
  left: 0;
  z-index: 1;
}

/* Group of 3: 1st → left 1/3, 2nd → center, 3rd → right 1/3 */
/* .grid-container > .plate-card:nth-child(3n+1)::before {
  left: 0; /* starts at left edge
  width: 40%;
}
.grid-container > .plate-card:nth-child(3n+2)::before {
  left: 27%; 
    content: '';
  position: absolute;
  bottom: 0;
  height: var(--hr-height);
  width: 50%;
  background: #000;
  z-index: 1;
}
.grid-container > .plate-card:nth-child(3n+3)::before {
  left: 60%; 
  width: 40%;
} */

    /* Small visual adjustments so the HR sits flush and doesn't cover content */
    .grid-container > .plate-card { padding-bottom: 14px; }


.container { max-width: 900px; margin: 20px; }
    .cart-item { display: flex; gap: 16px; padding: 16px; background: white; margin-bottom: 12px; margin-top: 5px;}
    .cart-item.fade-out { opacity: 0; transition: opacity 0.5s ease; }
    .cart-item img { width: 100px; height: 100px; object-fit: cover; }
    .item-info { flex: 1; }
    .item-info h3 { margin: 0 0 4px; font-size: 18px; }
    .item-info p { margin: 2px 0; color: #555; }
    .totalH { font-size: 20px; text-align: right; margin: 20px 0; font-weight: bold; direction: rtl;}
    .totalE { font-size: 20px; text-align: right; margin: 20px 0; font-weight: bold; direction: ltr;}
    .btn-checkout {
      display: block; width: 100%; padding: 14px;
      background: #006600; color: white; border: none;
      font-size: 18px; cursor: pointer;
      
    }
    .btn-checkout:disabled { background: #ccc; cursor: not-allowed; }
    .empty-cart { text-align: center; padding: 40px; color: #666; }
    .back-link { display: inline-block; margin-bottom: 20px; margin-top: 20px; color: #0066cc; text-decoration: none; }
    .back-link:hover { text-decoration: underline; }
    .checkout-form {
      background: white;
      padding: 20px;
      
      margin-top: 20px;
    }
    .form-group {
      margin-bottom: 15px;
      direction: rtl;
      
    }
    .form-group .companyDetails {
      width: 20%
    }
    .form-group label {
      /* display: block; */
      margin-bottom: 5px;
      font-weight: bold;
      color: #333;
    }
    .form-input {
      width: 100%;
      padding: 12px;
      border: 1px solid #ccc;
     /*  border-radius: 4px; */
      font-size: 16px;
      box-sizing: border-box;
    }
    .form-input:focus {
      border-color: #006600;
      outline: none;
    }





  #cartBar {
  /*position: fixed;
  top: 10;
  left: 10;
  width: 100%;*/
  background: #000000;
  color: white;
  /* padding: 12px 10px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  z-index: 1000;
  font-family: 'fbphilosof-regular', Arial, sans-serif;
  margin-top: 15px;
}
#cartBar .cart-info {
  font-size: 16px;
}
#cartBar .cart-info span {
  font-weight: bold;
}
#cartBar .cart-buttons a {
  color: white;
  text-decoration: none;
  background: rgba(255,255,255,0.2);
  padding: 8px 16px;
  /* border-radius: 4px; */
  /* margin-left: 10px; */
  transition: background 0.2s;
}
#cartBar .cart-buttons a:hover {
  background: rgba(255,255,255,0.3);
}
#cartBar .cart-buttons a.checkout-btn:disabled,
#cartBar .cart-buttons a.checkout-btn.disabled {
  background: rgba(255,255,255,0.1);
  cursor: not-allowed;
  opacity: 0.6;
}

#cartButton {
  background: none;
  border: none;
  color: white;
  background-color: black;
  font-size: 16px;
  cursor: pointer;
  padding: 8px 12px;
  /* border-radius: 4px; */
  transition: background 0.2s;
}

.reserved,.sold {
    /* opacity: 0.6; */
    cursor: not-allowed;
}



.dotReserved {
  --size: 25px;
  --base: #f2a75c;       /* main red */
  --dark-rim: orange;   /* rim */
  --spec: rgba(255,255,255,0.95); /* bright specular */
  height: var(--size);
  width: var(--size);
  border-radius: 50%;
  display: inline-block;

  /* layered fill: soft vertical gradient + slight bottom shadow */
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.92) 0%,
                    rgba(255,255,255,0.36) 12%,
                    rgba(255,255,255,0.08) 24%,
                    transparent 40%),
    radial-gradient(circle at 70% 75%, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.08) 25%, transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--base) 92%, black 8%), var(--base));

  /* thin darker rim and slight inset to suggest thickness */
  box-shadow:
    inset 0 -2px 4px rgba(0,0,0,0.25),   /* inner bottom depth */
    0 6px 14px rgba(0,0,0,0.45),         /* cast shadow */
    0 0 12px rgba(229,57,53,0.12);       /* faint glow */

  position: relative;
}

/* small glossy specular catch */
.dotReserved::after{
  content: "";
  position: absolute;
  left: 14%;
  top: 10%;
  width: 36%;
  height: 36%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%,
                              var(--spec) 0%,
                              rgba(255,255,255,0.35) 30%,
                              rgba(255,255,255,0.08) 55%,
                              transparent 70%);
  filter: blur(0.6px);
  pointer-events: none;
}

/* subtle darker rim using ::before */
.dotReserved::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  -webkit-mask: radial-gradient(farthest-side, black 92%, transparent 95%);
          mask: radial-gradient(farthest-side, black 92%, transparent 95%);
  background: radial-gradient(circle at 50% 65%,
                              rgba(0,0,0,0.35) 0%,
                              rgba(0,0,0,0.05) 60%,
                              transparent 100%);
  pointer-events: none;
}



.dotSold {
  --size: 25px;
  --base: #e53935;       /* main red */
  --dark-rim: #8b0000;   /* rim */
  --spec: rgba(255,255,255,0.95); /* bright specular */
  height: var(--size);
  width: var(--size);
  border-radius: 50%;
  display: inline-block;

  /* layered fill: soft vertical gradient + slight bottom shadow */
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,0.92) 0%,
                    rgba(255,255,255,0.36) 12%,
                    rgba(255,255,255,0.08) 24%,
                    transparent 40%),
    radial-gradient(circle at 70% 75%, rgba(0,0,0,0.22) 0%, rgba(0,0,0,0.08) 25%, transparent 60%),
    linear-gradient(180deg, color-mix(in srgb, var(--base) 92%, black 8%), var(--base));

  /* thin darker rim and slight inset to suggest thickness */
  box-shadow:
    inset 0 -2px 4px rgba(0,0,0,0.25),   /* inner bottom depth */
    0 6px 14px rgba(0,0,0,0.45),         /* cast shadow */
    0 0 12px rgba(229,57,53,0.12);       /* faint glow */

  position: relative;
}

/* small glossy specular catch */
.dotSold::after{
  content: "";
  position: absolute;
  left: 14%;
  top: 10%;
  width: 36%;
  height: 36%;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%,
                              var(--spec) 0%,
                              rgba(255,255,255,0.35) 30%,
                              rgba(255,255,255,0.08) 55%,
                              transparent 70%);
  filter: blur(0.6px);
  pointer-events: none;
}

/* subtle darker rim using ::before */
.dotSold::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  -webkit-mask: radial-gradient(farthest-side, black 92%, transparent 95%);
          mask: radial-gradient(farthest-side, black 92%, transparent 95%);
  background: radial-gradient(circle at 50% 65%,
                              rgba(0,0,0,0.35) 0%,
                              rgba(0,0,0,0.05) 60%,
                              transparent 100%);
  pointer-events: none;
}

.donation-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0;
  direction: rtl;
}

/* Entire label is clickable */
.donation-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  /* border-radius: 8px; */
  border: 1px solid #e4e4e4;
  background: #fff;
  cursor: pointer;
  user-select: none;
  transition: border-color 160ms, box-shadow 160ms, transform 120ms;
  min-width: 200px;
}

/* Hover/focus visual */
.donation-item:hover,
.donation-item:focus-within {
  border-color: #cfcfcf;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}

/* Hidden real checkbox but still keyboard accessible */
.donation-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Styled square checkbox */
.donation-box {
  flex: 0 0 28px;
  height: 28px;
  /* border-radius: 6px; */
  border: 2px solid #9b9b9b;
  background: linear-gradient(180deg, #fff, #fafafa);
  box-shadow: inset 0 -2px 3px rgba(0,0,0,0.06);
  transition: background 160ms, border-color 160ms, box-shadow 160ms;
  position: relative;
}

/* Checkmark (hidden by default) */
.donation-box::after{
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 8px;
  height: 14px;
  border: solid transparent;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 160ms;
}

/* Text block */
.donation-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.donation-title {
  font-size: 14px;
  color: #222;
}
.donation-amount {
  font-size: 13px;
  color: #666;
  margin-top: 2px;
}

/* When checked: change box color and show checkmark */
.donation-input:checked + .donation-box {
  background: linear-gradient(180deg, #ff6b6b, #e53935);
  border-color: #e53935;
  box-shadow: 0 6px 18px rgba(229,57,53,0.16), inset 0 -2px 3px rgba(0,0,0,0.12);
}
.donation-input:checked + .donation-box::after{
  border-color: #fff;
  opacity: 1;
}

/* Accessibility: show focus ring when keyboard focusing */
.donation-input:focus-visible + .donation-box{
  outline: 3px solid rgba(0,123,255,0.18);
  outline-offset: 2px;
}

/* Make items wrap nicely on small screens */


.form-group #companyDetailsSection{
  display: none;
  margin-top: 5px;
}











.main {
      width:100%;
      max-width:var(--max-width);
      background: linear-gradient(180deg, rgba(255,255,255,0.6), rgba(255,255,255,0.9));
      border:1px solid var(--border);
      /* border-radius:12px; */
      padding:var(--gap);
      box-shadow: 0 6px 20px rgba(20,30,60,0.06);
      box-sizing:border-box;
    }

    /* Grid: top row two equal columns, bottom row spanning both columns */
    .grid {
      display:grid;
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: minmax(120px, auto);
      gap: var(--gap);
    }

    .top-right  { grid-column: 1 / 2; align-content: center; margin-top: 20px;}
    .top-left { grid-column: 2 / 3; align-content: center;}
    .bottom    { grid-column: 1 / -1; } /* spans both columns */

    .box {
     
     
      border-radius: var(--radius);
      padding: var(--pad);
      box-sizing: border-box;
     /*  display:flex;
      flex-direction:column;
      gap:8px; */
    }

    .box h3 {
      margin:0;
      font-size:16px;
      color: #10203a;
    }
    .box p {
      margin:0;
      color:#3b4b63;
      font-size:14px;
      line-height:1.4;
    }


    .TitleContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  direction: rtl;
}

.TitleContainer div {
  margin: 10px;
  padding: 20px;
}

.TitleContainer p.extended {
  position: relative;
  border-top: 6px solid black;   /* the short top segment */
  margin-top: 40px;
  padding-right: 15px;
  /* remove border-right if you don't want the full-height right stroke */
  border-right: 12px solid black;
  padding: 15px 15px 0 0;
}

/* the overshoot to the right */
.TitleContainer p.extended::after {
  content: "";
  position: absolute;
  top: -6px;                     /* align with top border (negate half if needed) */
  right: -40px;                  /* how far it overshoots; adjust value */
  width: 40px;                   /* same as overshoot distance */
  height: 6px;                   /* thickness matches border-top */
  background: black;             /* same color as border */
  pointer-events: none;
}


 #limitedOfferPopup {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #fff8e1;
            border: 2px solid #114431;
            border-radius: 16px;
            padding: 24px;
            width: 90%;
            max-width: 500px;       /* wider */
            max-height: 80vh;        /* prevents overflow on small screens */
            box-shadow: 0 10px 30px rgba(0,0,0,0.25);
            z-index: 9999;
            font-family: Almoni, Arial, sans-serif;
            direction: rtl;
            text-align: center;
            font-weight: bold;
        }
        #limitedOfferPopup h3 {
            margin: 0 0 16px;
            color: #114431;
            font-size: 22px;
        }
        #limitedOfferPopup p {
            margin: 0 0 20px;
            font-size: 17px;
            line-height: 1.5;
            color: #555;
        }
        #closePopup {
            background: #114431;
            border: none;
            color: white;
            padding: 10px 24px;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            font-size: 16px;
            transition: background 0.2s;
        }
        #closePopup:hover {
            background: #ffca2c;
        }



@media screen and (max-width: 480px) {

  .cart-container {
    display: block;
  }

   .plate-info-english p:nth-child(1) {
  font-weight: bolder;
  font-size: 23px;
}

    .grid-container {
      grid-template-columns: repeat(1, 1fr); 
    }

.nav-logo img {
  height: 50px; 
  width: auto;
}

.form-group .companyDetails {
      width: 300px;
      margin: 3px;
    }

 .grid-container > .plate-card:nth-child(odd) {
      background: #ffffff; /* white background for odd cards */
      color: #111;
    }

    .grid-container > .plate-card:nth-child(even) {
      background-image: var(--alt-bg-url); /* user replaces URL above */
      
    }



}



