body.predefined-body {
  font-family: sans-serif;
  background-color: #f0f0f0; /* ✅ Light grey */

  color: #000;
  padding: 2rem;
}

    .offer-group {
      max-width: 600px;
      margin: 0 auto 2rem auto;
    }

   .group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 1rem;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background 0.3s ease;
  margin-bottom: 0.5rem;
}

    .group-header:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .group-left {
      display: flex;
      align-items: center;
      gap: 0.8rem;
    }

    .group-logo {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
    }

    .group-text {
      display: flex;
      flex-direction: column;
    }

 .offer-line1 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.offer-line2 {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 6px;
}

.group-line2 {
  font-size: 0.9rem;
  color: #333; /* ✅ Slightly darker grey */
}

.arrow-toggle {
  font-size: 1.5rem;
  transition: color 0.3s ease;
  color: green;
  user-select: none;
}

    .offer-list {
      display: none;
      margin-top: 1rem;
      flex-direction: column;
      gap: 1rem;
    }

   .offer-card {
  background: #ffffff; /* ✅ White background for expanded offers */
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
}

    .offer-route {
      font-weight: bold;
      margin-bottom: 0.4rem;
    }

    .offer-info {
      font-size: 0.9rem;
      color: #ccc;
    }

   .offer-links a {
  margin-right: 1rem;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
}