/* ========================================
   SIMPLE PROGRESS SLIDER - Barre de progression simple
   ======================================== */

.simple-progress-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.simple-progress-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
}

.simple-progress-track {
  flex: 1;
  position: relative;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  overflow: hidden;
}

.simple-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #FFFFFF;
  border-radius: 2px;
  transition: width 0.1s linear;
  width: 0%;
}

.simple-progress-track:hover .simple-progress-fill {
  background: #FFFFFF;
}

.simple-progress-track:active {
  cursor: grabbing;
}

/* Responsive */
@media (max-width: 768px) {
  .simple-progress-track {
    height: 6px;
  }
}
