/* css/resume.css */

/* Generate button gradient */
.btn-gradient {
  background: linear-gradient(90deg, #553c9a, #ee4b2b);
  color: #fff;
  border: none;
  transition: none!important;
}
.btn-gradient:hover { opacity: .9!important; }

/* Loader spinner */
.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); } }

/* Dice icon in textarea */
.textarea-wrapper { position: relative; }
.textarea-dice-icon {
  position: absolute; top: 35px; right: 10px;
  color: #000; cursor: pointer; z-index: 10;
}

/* Slider track & thumb (WebKit) */
#lengthSlider::-webkit-slider-runnable-track {
  height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, #553c9a, #ee4b2b);
}
#lengthSlider::-webkit-slider-thumb {
  -webkit-appearance: none; width: 14px; height: 14px;
  background: #fff; border: 2px solid #553c9a;
  border-radius: 50%; cursor: pointer; margin-top: -4px;
}
/* Slider track & thumb (Firefox) */
#lengthSlider::-moz-range-track {
  height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, #553c9a, #ee4b2b);
}
#lengthSlider::-moz-range-thumb {
  width: 14px; height: 14px; background: #fff;
  border: 2px solid #553c9a; border-radius: 50%;
  cursor: pointer;
}

/* Toggle extra options */
#resumeExtraContainer { margin-bottom: 1rem; }

/* Favorites entries */
#resumeFavorites .border { position: relative; }
#resumeFavorites .border button {
  padding: .25rem .4rem;
}
#resumeFavorites .border .absolute { top: .5rem; right: .5rem; }
.container-resume { max-width: 1250px; margin: .8rem auto; padding: 1rem; background: #fff; border-radius: 8px; box-shadow: 0 0 15px rgba(0,0,0,0.1); }
    .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;
    }