body, html {
  width: 100vw;
  overflow-x: hidden;
}

.btn-primary {
    font-family: "BeresaSans-Demi", sans-serif;
  font-size: 16px;
  line-height: 24px;
  min-width: 180px;
  background-color: #FF005F;
  color: #ffffff;
  cursor: pointer;
  margin: 12px 0;
  padding: 13px 12px 12px 12px;
  border-radius: 12px;
  border: none !important;
}
.btn-primary:hover{
  background-color: #FF005F45 !important;
  color: #444444 !important;
}

.btn-secondary {
  font-family: "BeresaSans-Demi", sans-serif;
font-size: 16px;
line-height: 24px;
min-width: 180px;
background-color: #2d2d2d;
color: #ffffff;
cursor: pointer;
margin: 12px 0;
padding: 13px 12px 12px 12px;
border-radius: 12px;
border: none !important;
}
.btn-secondary:hover{
  background-color: #2d2d2d45 !important;
  color: #444444 !important;
}

.text-primary {
    color: #FF005F !important;
}

.spinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  display: none; /* Standardmäßig versteckt */
  margin: 20px auto;
}

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

.progress-container {
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 20px;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
  overflow: hidden;
  margin: 20px 0;
}

.progress-bar {
  height: 30px;
  width: 0%;
  background-color: #FF005F;
  text-align: center;
  line-height: 30px;
  color: white;
  font-weight: bold;
  font-family: Arial, sans-serif;
  transition: width 0.4s ease-in-out;
}

button[disabled] {
  background-color: #FF005F45 !important;
}
.hidden-spinner {
  visibility: hidden;  /* Element bleibt im Layout, ist aber unsichtbar */
}
