.copy-container {
  display: flex;
  align-items: stretch;
  border-radius: 50px;
  overflow: hidden;
  background-color: #fff7e6;
  border: 2px solid orange;
  max-width: 500px;
  margin: 20px auto;
}

.copy-referralcode {
  font-weight: 700;
  font-size: 1.2rem;
  padding: 12px 20px;
  color: #222;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
}

.copy-btn {
  background-color: orange;
  color: white;
  border: none;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s ease;
}

.copy-btn:hover {
  background-color: #e68a00;
}

.copy-icon {
  margin-right: 8px;
}

/* Mobiel */
@media (max-width: 768px) {
  .copy-container {
    flex-direction: column;
    border-radius: 12px;
  }

  .copy-referralcode,
  .copy-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}


/* Breadcrumbs stijl */
.breadcrumbs {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs a {
  color: #0073e6;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.breadcrumbs a:hover {
  color: #005bb5;
  text-decoration: underline;
}

.breadcrumbs-sep {
  margin: 0 0.5rem;
  color: #aaa;
  font-size: 0.85rem;
}

/* Voor mobiel: maak het kleiner en breekbaar */
@media (max-width: 600px) {
  .breadcrumbs {
    font-size: 0.85rem;
  }
  .breadcrumbs-sep {
    margin: 0 0.3rem;
  }
}
.main {
  max-width: 1200px !important;
}

.columns {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.columns .column {
  flex: 1;
  min-width: 250px;
}

.referral-grid img {
  max-width: 150px;
  height: auto;
  margin-bottom: 0.5rem;
}

.referral-grid a img:hover {
  transform: scale(1.05);
  transition: transform 0.2s ease;
}

@media (max-width: 768px) {
  .columns {
    flex-direction: column;
  }
}