.cursor-not-allowed {
  cursor: not-allowed !important;
}
.opacity-50 {
  opacity: 0.5 !important;
}


.form-label{font-weight:700;}


.not-allowed {
  cursor: not-allowed!important   

}

.disabled{
	font-style:italic;
	
	background-color:light-grey!important;
	opacity:0.25;
}


/************************************************************
/ Rooster
*************************************************************/

.rooster-tabel {
  border-collapse: collapse;
  width: 100%;
  table-layout: auto;
  text-align: center;
  font-size: 0.8rem;
}

.rooster-tabel th,
.rooster-tabel td {
  border: 1px solid #ddd;
  padding: 0;
}

.rooster-tabel th {
  color: #fff;
  font-weight: bold;
  height: 100px;
  vertical-align: bottom;
  text-align: center;
}

.rooster-tabel th .datum {
  display: inline-block;
  transform: rotate(-90deg);

  white-space: nowrap;
  margin-bottom: 5px;
  max-width:15px;
}

.rooster-tabel td.naam {
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
 
  padding-left: 6px;
}

.vakjes div {
  display: inline-block;
  padding:2px;
  margin: 2px;
  border: 1px solid #999;
  border-radius: 2px;
  background: #fff;
}

.ploeg-titel {
  font-weight: bold;
  background-color: #f0f0f0;
  text-transform: uppercase;
}



/************************************************************
/ LETTERBORD
*************************************************************/

.img-holder {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;
}

.img-holder img {
  width: 120px; /* pas formaat aan */
  }


/* Hoofdcontainer */
.letterboard {
  margin: 0;
  padding: 10px 20px;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Arial, sans-serif;
  background: #F60000;
	
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Elke regel */
.letterboard .line {
  position: relative;
  width: 100%;
  height: calc(100% / 30);        /* 30 regels zichtbaar */
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: calc(2vw + 20px);
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  z-index: 1;
}

/* dunne witte scheidslijn achter de tekst */
.letterboard .line::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.75);
  z-index: 0;
}

/* tekstblokken (datum en tekst) */
.letterboard .line .date,
.letterboard .line .text {
  position: relative;
  z-index: 2; /* boven de lijn */
}

/* gecentreerde regels (zoals jaartitels of kopjes) */
.letterboard .line.center {
  justify-content: center;
  text-align: center;
}

/* links/rechts uitlijning */
.letterboard .line:not(.center) .date {
  flex: 0 0 auto;
  text-align: left;
  padding-right: 1rem;
}

.letterboard .line:not(.center) .text {
  flex: 1;
  text-align: right;
}

/* optioneel: iets subtielere lijn bij gecentreerde regels */
.letterboard .line.center::after {
  background-color: rgba(255, 255, 255, 0.15);
}
