/* Smooth, clean, slightly vibrant aesthetic */

body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom, #f7f9fc, #e6ecf2); /* soft light blue fade */
    color: #222;
  }
  
  .gym-container {
    padding: 20px;
    max-width: 600px;
    margin: auto;
    text-align: center;
  }
  
  h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #007bff; /* blue accent */
  }
  
  .subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
  }
  
  .day-cards {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  
  .card {
    background-color: white;
    border-left: 5px solid transparent;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.25s ease;
    cursor: pointer;
  }
  
  .card:hover {
    background-color: #e6f0ff; /* light blue hover */
    border-left: 5px solid #007bff;
    transform: translateY(-3px);
  }
  
  .card h2 {
    margin-bottom: 5px;
    font-size: 1.3rem;
    color: #333;
  }
  
  .card p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
  }
  /* ==== Branding Sticker ==== */
.branding-sticker {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1e1e2f;
  color: #fff;
  padding: 10px 15px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9999;
  font-size: 0.9rem;
  font-family: 'Segoe UI', Tahoma, sans-serif;
}

.diamond-logo {
  width: 24px;
  height: 24px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.branding-text strong {
  color: #00d4ff;
  font-weight: 600;
  letter-spacing: 0.3px;
}
