body {
  background-color: rgb(0, 0, 0);
  color: #ffffff;
  font-family: Verdana;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.9);
  
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9)), url(/resurser/bilder/cps.png);
  background-size: cover;
  background-attachment: fixed;
  background-position: center; 
  background-repeat: no-repeat;
}

.content-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px;
}

a {
  color:rgb(160,0,0);
}

button {
  width: 80;
  height: 30;
  padding: 5px;
  background: #fff;
  border: 1px solid #000;
  cursor: pointer;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  vertical-align: top;
  transition: 0.2s;
  
  /* Texten anpassar sig efter knappens storlek */
  font-family: Verdana, sans-serif;
  font-weight: bold;
  font-size: 14px; /* Prova att ändra denna mellan 12-16px */
  line-height: 1.1;
}

.progress-container {
  width: 100%;
  max-width: 1000px;
  margin: 20px 0;
  font-family: Arial, sans-serif;
  color: #fff;
}

.progress-label {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 14px;
}

.progress-bar-bg {
  width: 100%;
  background-color: #333; /* Mörkgrå bakgrund */
  border-radius: 4px;
  height: 25px;
  overflow: hidden;
  border: 1px solid #444;
}

.progress-bar-fill {
  height: 100%;
  background-color: rgb(160,0,0); /* Röd färg som matchar din meny */
  transition: width 0.5s ease-in-out;
}

.progress-stats {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: #aaa;
}