/* === AUDIO NORMALIZER - ORIGINAL COMPLETE STYLES === */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 50%, #a8a8a8 100%);
  min-height: 100vh;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* === HOME ICON === */
.home-icon-container {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;
}

.home-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.home-icon-link:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.home-icon {
  width: 24px;
  height: 24px;
}

/* === HEADER === */
.app-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
}

/* === CARDS === */
.card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.card h2, .card h3 {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1.5rem;
}

/* === UPLOAD AREA === */
.upload-area {
  border: 2px dashed #ddd;
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.upload-area:hover {
  border-color: #007bff;
  background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
  transform: translateY(-2px);
}

.upload-area.dragover {
  border-color: #28a745;
  background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c8 100%);
  transform: scale(1.02);
}

.upload-icon {
  width: 64px;
  height: 64px;
  color: #6c757d;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.upload-area:hover .upload-icon {
  color: #007bff;
  transform: scale(1.1);
}

.upload-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.upload-subtext {
  color: #6c757d;
  margin-bottom: 1rem;
}

.upload-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #007bff;
  color: #2c3e50;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}

.upload-button:hover {
  background: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.3);
}

.progress-container {
  margin-top: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar-inner {
  height: 100%;
  background: linear-gradient(90deg, #007bff, #0056b3);
  width: 0%;
  transition: width 0.3s ease;
}

/* === FORMAT SELECTION === */
.export-format-container {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.export-format-container h3 {
  margin-bottom: 1.5rem;
  color: #333;
  font-size: 1.5rem;
}

.format-selector {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.format-option {
  padding: 1.5rem;
  border: 2px solid #e9ecef;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: white;
  text-align: center;
}

.format-option:hover {
  border-color: #007bff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.1);
}

.format-option.active {
  border-color: #007bff;
  background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
}

.format-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.format-description {
  font-size: 0.875rem;
  color: #6c757d;
}

/* Format Options Dropdown Fix */
.format-options {
    background: #f8f9fa !important;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    color: #333 !important;
}

.format-options h4 {
    color: #333 !important;
    margin-bottom: 1rem;
}

.format-options select {
    background: white !important;
    color: #333 !important;
    border: 1px solid #ddd !important;
    padding: 8px 12px;
    border-radius: 6px;
    width: 100%;
}

.format-options select option {
    background: white !important;
    color: #333 !important;
}

.format-options label {
    color: #333 !important;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-success {
  background: #28a745;
  color: #2c3e50;
}

.btn-success:hover {
  background: #218838;
}

.btn-danger {
  background: #dc3545;
  color: #2c3e50;
}

.btn-danger:hover {
  background: #c82333;
}

.btn-primary {
  background: #007bff;
  color: #2c3e50;
}

.btn-primary:hover {
  background: #0056b3;
}

.btn-block {
  width: 100%;
  justify-content: center;
  margin-bottom: 1rem;
}

/* === GLOBAL CONTROLS === */
.global-controls {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.global-controls h3 {
  margin-bottom: 1.5rem;
  color: #333;
}

.controls-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.control-group {
  flex: 1;
  min-width: 200px;
}

.control-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #333;
}

.control-group input,
.control-group select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

/* === STATUS DISPLAY === */
#status {
  text-align: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;
  margin: 2rem 0;
  font-weight: 500;
}

#status.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#status.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* === FILE LIST === */
#fileList {
  margin-top: 2rem;
}

.file-item {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.file-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.file-item.normalized {
  border-left: 4px solid #28a745;
}

.file-item.pending {
  border-left: 4px solid #ffc107;
}

.file-info {
  flex: 1;
}

.file-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.file-details {
  font-size: 0.875rem;
  color: #6c757d;
}

.file-actions {
  display: flex;
  gap: 0.5rem;
}

.file-status-badges {
  margin-top: 0.5rem;
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 4px;
  margin-right: 0.5rem;
}

.badge.normalized {
  background: #d4edda;
  color: #155724;
}

.badge.pending {
  background: #fff3cd;
  color: #856404;
}

.badge.processed {
  background: #d1ecf1;
  color: #31708f;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
  
  .app-title {
    font-size: 2rem;
  }
  
  .format-selector {
    grid-template-columns: 1fr;
  }
  
  .controls-row {
    flex-direction: column;
  }
  
  .control-group {
    min-width: auto;
  }
  
  .file-item {
    flex-direction: column;
    align-items: stretch;
  }
  
  .file-actions {
    margin-top: 1rem;
    justify-content: center;
  }
}

/* === HIDDEN ELEMENTS === */
#fileInput {
  display: none;
}

.no-files {
  text-align: center;
  color: #6c757d;
  font-style: italic;
  padding: 2rem;
}

/* === LOADING SPINNER === */
#loadingSpinner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.spinner-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* === ENCODER STATUS === */
.export-status {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.encoder-status {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.encoder-item {
  flex: 1;
  min-width: 120px;
}

.encoder-label {
  font-weight: 600;
  color: #333;
}

.encoder-status-text {
  margin-left: 0.5rem;
}

.encoder-status-text.available {
  color: #28a745;
}

.encoder-status-text.unavailable {
  color: #dc3545;
}

.encoder-status-text.loading {
  color: #ffc107;
}

/* === FORMAT OPTIONS === */
.format-options {
  background: #343a40;
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 1rem;
  color: #2c3e50;
  display: none;
}

.format-options.active-format {
  display: block;
  animation: fadeIn 0.3s ease;
}

.format-options h4 {
  color: #2c3e50;
  margin-bottom: 1rem;
}

.option-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.option-group {
  flex: 1;
  min-width: 150px;
}

.option-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #2c3e50;
  font-weight: 500;
}

.option-group select {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
  color: #2c3e50;
}

.option-group select option {
  background: #343a40;
  color: #2c3e50;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === FILE COUNT DISPLAY === */
#fileCountDisplay {
  text-align: center;
  padding: 1rem;
  background: #e9ecef;
  border-radius: 8px;
  margin: 1rem 0;
  font-weight: 500;
  color: #333;
}

/* === BUTTON GROUP === */
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .btn-group {
    flex-direction: row;
  }
  
  .btn-block {
    width: auto;
    flex: 1;
  }
}

/* === UTILITIES === */
.text-center {
  text-align: center;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.hidden {
  display: none !important;
}

  margin-top: 1rem !important;
  background: #f8f9fa !important;
  border-radius: 8px !important;
  padding: 1rem !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
}

  display: none !important;
}

  display: block !important;
}

  width: 100% !important;
  height: 12px !important;
  background: #e9ecef !important;
  border-radius: 6px !important;
  overflow: hidden !important;
  position: relative !important;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  height: 100% !important;
  background: linear-gradient(90deg, #007bff, #0056b3) !important;
  width: attr(style) !important;
  transition: width 0.3s ease !important;
  border-radius: 6px !important;
  box-shadow: 0 1px 3px rgba(0, 123, 255, 0.3) !important;
}

/* Alternative: Direkter Style für width */
  background: linear-gradient(90deg, #007bff, #0056b3) !important;
  height: 12px !important;
  border-radius: 6px !important;
  transition: width 0.3s ease !important;
  position: relative !important;
}

  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: linear-gradient(90deg, #007bff, #0056b3) !important;
  border-radius: 6px !important;
  box-shadow: 0 1px 3px rgba(0, 123, 255, 0.3) !important;
}

/* Progress Text Element */
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 0.5rem !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #495057 !important;
}

/* Progress Label */
.progress-label {
  display: flex !important;
  justify-content: space-between !important;
  margin-bottom: 0.5rem !important;
  font-weight: 500 !important;
  font-size: 14px !important;
  color: #495057 !important;
}

/* Sichtbarkeits-Fix */
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}


/* === TEMPORÄRER PROGRESS-BAR TEST === */
  border: 2px solid #007bff !important; /* Blaue Umrandung zum Sehen */
  background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%) !important;
}

  border: 1px solid #0056b3 !important; /* Rand um Progress-Bar */
  background: #dee2e6 !important; /* Hellgrauer Hintergrund */
}


  margin: 1rem 0 !important;
  background: white !important;
  border-radius: 8px !important;
  padding: 1rem !important;
  border: 2px solid #007bff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

/* Progress-Bar Track (Hintergrund) */
  height: 20px !important;
  background-color: #e9ecef !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  position: relative !important;
  border: 1px solid #ced4da !important;
}

/* Progress-Bar Fill (der sich bewegt) */
  background-image: linear-gradient(90deg, #007bff 0%, #0056b3 100%) !important;
  background-size: var(--progress-width, 0%) 100% !important;
  background-repeat: no-repeat !important;
  background-color: #e9ecef !important;
  transition: background-size 0.5s ease !important;
}

/* Progress Text */
  text-align: center !important;
  font-weight: bold !important;
  margin-bottom: 0.5rem !important;
  color: #333 !important;
}


/* === SILBER HINTERGRUND FÜR BESSERE SICHTBARKEIT === */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  /* NEUER SILBER GRADIENT statt Blau */
  background: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 50%, #a8a8a8 100%) !important;
  min-height: 100vh;
  color: #333;
  line-height: 1.6;
}

/* Alternative Silber-Varianten */
body.silver-light {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 50%, #d0d0d0 100%) !important;
}

body.silver-dark {
  background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 50%, #808080 100%) !important;
}

body.silver-metallic {
  background: linear-gradient(135deg, #e8e8e8 0%, #c9c9c9 25%, #b8b8b8 50%, #a8a8a8 75%, #989898 100%) !important;
}

/* App-Title anpassen für besseren Kontrast */
.app-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  /* DUNKLER TEXT auf Silber statt weiß */
  color: #2c3e50 !important;
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3) !important;
}

/* Progress-Bar jetzt deutlich sichtbar auf Silber */
  margin: 1rem 0 !important;
  background: white !important;
  border-radius: 8px !important;
  padding: 1rem !important;
  border: 2px solid #007bff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

  height: 16px !important;
  background-color: #e9ecef !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  position: relative !important;
  border: 1px solid #ced4da !important;
}

/* Progress-Bar Fill - jetzt deutlich sichtbar */
  background-image: linear-gradient(90deg, #007bff 0%, #0056b3 100%) !important;
  background-size: var(--progress-width, 0%) 100% !important;
  background-repeat: no-repeat !important;
  background-color: #e9ecef !important;
  transition: background-size 0.4s ease !important;
}


  margin: 1rem 0 !important;
  background: white !important;
  border-radius: 8px !important;
  padding: 1rem !important;
  border: 2px solid #007bff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

/* Progress-Bar Hintergrund-Track */
  width: 100% !important;
  height: 16px !important;
  background-color: #e9ecef !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  position: relative !important;
  border: 1px solid #ced4da !important;
}

/* Progress-Bar selbst - DIREKTE WIDTH-KONTROLLE */
  height: 100% !important;
  background: linear-gradient(90deg, #007bff 0%, #0056b3 100%) !important;
  border-radius: 7px !important;
  transition: width 0.4s ease !important;
  width: 0% !important; /* Startet bei 0% */
  position: relative !important;
  box-shadow: 0 1px 3px rgba(0, 123, 255, 0.4) !important;
}

/* Progress-Text */
  text-align: center !important;
  font-weight: bold !important;
  margin-bottom: 0.5rem !important;
  color: #333 !important;
  font-size: 14px !important;
}

/* Entferne alle konfliktierenden Styles */
  display: none !important;
}


  position: relative !important;
  z-index: 1000 !important; /* Über andere Elemente */
  margin: 1rem 0 !important;
  background: white !important;
  border-radius: 8px !important;
  padding: 1rem !important;
  border: 2px solid #007bff !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}

  position: relative !important;
  z-index: 1001 !important; /* Noch höher */
  height: 16px !important;
  background: linear-gradient(90deg, #007bff 0%, #0056b3 100%) !important;
  border-radius: 7px !important;
  transition: width 0.4s ease !important;
  width: 0% !important;
  box-shadow: 0 1px 3px rgba(0, 123, 255, 0.4) !important;
}

  position: relative !important;
  z-index: 1002 !important; /* Am höchsten */
  text-align: center !important;
  font-weight: bold !important;
  margin-bottom: 0.5rem !important;
  color: #333 !important;
  font-size: 14px !important;
}

/* Input-Felder niedriger setzen */
input, select, textarea, .form-control {
  position: relative !important;
  z-index: 1 !important; /* Niedrigerer Z-Index */
}

/* File Input spezifisch */
#fileInput {
  z-index: 1 !important;
}

/* Upload Area */
.upload-area {
  position: relative !important;
  z-index: 2 !important;
}


/* === FINAL PROGRESS BAR - GARANTIERT FUNKTIONIEREND === */
#progress-container {
    position: relative !important;
    z-index: 9999 !important;
    margin: 2rem auto !important;
    width: 100% !important;
    max-width: 500px !important;
    background: white !important;
    border-radius: 12px !important;
    padding: 1.5rem !important;
    border: 3px solid #007bff !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2) !important;
    display: none !important; /* Standardmäßig versteckt */
}

#progress-container[style*="display: block"],
#progress-container.visible {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

#progress-text {
    text-align: center !important;
    font-weight: bold !important;
    margin-bottom: 1rem !important;
    color: #333 !important;
    font-size: 16px !important;
    z-index: 10001 !important;
    position: relative !important;
}

.progress-track {
    width: 100% !important;
    height: 24px !important;
    background: #e9ecef !important;
    border-radius: 12px !important;
    border: 2px solid #ced4da !important;
    overflow: hidden !important;
    position: relative !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

#progress-bar {
    height: 100% !important;
    width: 0% !important;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%) !important;
    border-radius: 10px !important;
    transition: width 0.5s ease !important;
    position: relative !important;
    z-index: 10000 !important;
    box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3) !important;
}

/* Entferne konfliktierendes CSS */
#progress-bar::before,
#progress-bar::after {
    display: none !important;
    content: none !important;
}


/* === BEAUTIFUL PROGRESS BAR - DAUERHAFT === */
#beautiful-progress {
    position: relative !important;
    display: none !important;
    width: 90% !important;
    max-width: 500px !important;
    margin: 20px auto !important;
    padding: 20px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    z-index: 1000 !important;
    transition: opacity 0.5s ease, transform 0.5s ease !important;
}

#beautiful-progress.visible {
    display: block !important;
    opacity: 1 !important;
}

#beautiful-progress.fade-out {
    opacity: 0 !important;
    transform: translateY(-20px) scale(0.95) !important;
}

#beautiful-text {
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #333 !important;
    margin-bottom: 15px !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.progress-track-beautiful {
    width: 100% !important;
    height: 8px !important;
    background: #e9ecef !important;
    border-radius: 4px !important;
    overflow: hidden !important;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

#beautiful-bar {
    height: 100% !important;
    width: 0% !important;
    background: linear-gradient(90deg, #007bff 0%, #0056b3 100%) !important;
    border-radius: 4px !important;
    transition: width 0.4s ease, background 0.3s ease !important;
    box-shadow: 0 1px 3px rgba(0, 123, 255, 0.3) !important;
}

/* Progress-Bar Farben */
#beautiful-bar.progress-red {
    background: linear-gradient(90deg, #dc3545 0%, #c82333 100%) !important;
}

#beautiful-bar.progress-yellow {
    background: linear-gradient(90deg, #ffc107 0%, #e0a800 100%) !important;
}

#beautiful-bar.progress-green {
    background: linear-gradient(90deg, #28a745 0%, #218838 100%) !important;
}

