  /* Scoped styles for Cash4Life Random Number Generator */
  .cash4life-widget {
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    background-color: #f5f5f5;
    font-family: Arial, sans-serif;
    max-width: 650px;
    margin: auto;
    text-align: center;
  }

  .cash4life-container h2 {
    color: #333;
    margin-bottom: 20px;
  }

  .number-display {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 20px 0;
    padding: 10px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }

  .number-circle {
    background-color: #E74C3C;
    color: white;
    font-size: 24px;
    font-weight: bold;
    line-height: 60px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  .number-circle.green {
    background-color: #27AE60;
  }

  .generate-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
  }

  .generate-button:hover {
    background-color: #45a049;
  }

  .download-link {
    display: block;
    margin-top: 15px;
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
  }

  @media (max-width: 600px) {
    .number-display {
      flex-wrap: wrap;
    }

    .number-circle {
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 15px;
    }
  }
