 body {
      font-family: 'Arial', sans-serif;
      background-color: #f3f4f6;
      margin: 0;
      padding: 0;
    }
    /* Container styles */
    .container-comment {
      max-width: 1250px;
      margin: 0.8rem auto;
      padding: 1rem;
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }
    /* Button with gradient */
    .btn-gradient {
      background: linear-gradient(90deg, #553c9a, #ee4b2b);
      color: #fff;
      border: none;
      transition: none !important;
    }
    .btn-gradient:hover {
      opacity: 1 !important;
      background: linear-gradient(90deg, #553c9a, #ee4b2b) !important;
    }
    /* Textarea and dice icon */
    .textarea-wrapper {
      position: relative;
    }
    .textarea-dice-icon {
      position: absolute;
      top: 35px; 
      right: 10px;
      color: black;
      cursor: pointer;
      z-index: 10;
    }
    textarea#commentContext {
      padding-right: 2rem;
    }
    /* Range Slider with gradient */
    #lengthSlider::-webkit-slider-runnable-track {
      height: 6px;
      border-radius: 3px;
      background: linear-gradient(90deg, #553c9a, #ee4b2b);
    }
    #lengthSlider::-webkit-slider-thumb {
      -webkit-appearance: none;
      appearance: none;
      background: #fff;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 2px solid #553c9a;
      cursor: pointer;
      margin-top: -4px;
    }
    #lengthSlider::-moz-range-track {
      height: 6px;
      border-radius: 3px;
      background: linear-gradient(90deg, #553c9a, #ee4b2b);
    }
    #lengthSlider::-moz-range-thumb {
      background: #fff;
      width: 14px;
      height: 14px;
      border-radius: 50%;
      border: 2px solid #553c9a;
      cursor: pointer;
    }
    /* Grid for generated comment cards */
    .comments-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem;
    }
    .comment-card {
      background: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .comment-card pre {
      margin: 0;
      padding: 1rem;
      font-size: 1rem;
      white-space: pre-wrap;
    }
    .card-actions {
      background: #ffffff;
      border-top: 1px solid #e5e7eb;
      padding: 0.5rem 1rem;
      display: flex;
      justify-content: flex-end;
      gap: 0.75rem;
    }
    .card-actions i {
      cursor: pointer;
      transition: color 0.2s ease;
    }
    .card-actions i:hover {
      color: #553c9a;
    }
    /* Loader styling */
    .loader-border {
      width: 1rem;
      height: 1rem;
      border: 2px solid #fff;
      border-right-color: transparent;
      border-radius: 50%;
      animation: spinner 0.6s linear infinite;
    }
    @keyframes spinner {
      to { transform: rotate(360deg); }
    }
    
    
.step {
background-color: #f9f9f9;
padding: 20px;
}
@media screen and (max-width: 768px) {
.step {
padding: 15px;
margin-bottom: 20px;
max-width: 100%;
overflow-x: hidden;
}
}
.step-description {
font-size: 16px;
color: #666;
}