* {
    box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.columnh {
    text-align: center;
    padding: 10px;
    background-color: #004899;
    color: white;
    font-size: small;
    font-weight: normal;
    border: dashed;
}
th {
    position: sticky;
    top: 45px;
    z-index: 100;
}
.columnk {
    text-align: center;
    padding: 10px;
    border: 1px solid #004899 !important;
    font-size: small;
}
/* Clear floats after the columns */
.rowh {
    content: "";
    white-space: normal;
    word-wrap: break-word;
    clear: both;
}
.rowk {
    content: "";
    white-space: normal;
    word-wrap: break-word;
    clear: both;
}
.rowk:hover {background-color: rgb(230, 230, 230);}

.columnl {
    padding: 0.1rem;
}
.rowl:hover {background-color: rgb(230, 230, 230);}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .columnh {
        width: 100%;
    }
    .columnk {
        width: 100%;
    }
}
.blink {
    animation: blink-animation 1s steps(5, start) infinite;
    color: white;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
.trash-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('prullebak.png');
    background-size: cover;
    cursor: pointer;
}                       
.trash-icon:hover {
    transform: scale(1.2);
}
.edit-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('edit.png');
    background-size: cover;
    cursor: pointer;
}                       
.edit-icon:hover {
    transform: scale(1.2);
}
.mailsent-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('emailsent.png');
    background-size: cover;
    cursor: pointer;
}
.mailsent-icon:hover {
    transform: scale(1.2);
}

.mailsentf-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('emailsentf.png');
    background-size: cover;
    cursor: pointer;
}
.mailsent-iconf:hover {
    transform: scale(1.2);
}

.nieuwk {
    cursor: pointer;
}
.nieuwk:hover {background-color: rgb(230, 230, 230);}






#customMenu {
    display: none;
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    padding: 5px;
    border-radius: 4px;
    z-index: 1000;
}
.color-option {
    width: 20px;
    height: 20px;
    margin: 3px;
    display: inline-block;
    border: 1px solid #888;
    cursor: pointer;
}
.colorft-option {
    width: 20px;
    height: 20px;
    margin: 3px;
    display: inline-block;
    cursor: pointer;
}
.colorwt-option {
    width: 20px;
    height: 20px;
    margin: 3px;
    display: inline-block;
    cursor: pointer;    
}
.colorfb-option {
    width: 20px;
    height: 20px;
    margin: 3px;
    display: inline-block;
    border: 1px solid #888;
    cursor: pointer;
}
.colorfb-option:before, .colorfb-option:after {
    position: absolute;
    left: 17px;
    content: ' ';
    height: 21px;
    width: 2px;
    background-color: #fff;
}
.colorfb-option:before {
    transform: rotate(45deg);
}
.colorfb-option:after {
    transform: rotate(-45deg);
}
.color-option:hover {
    border: 2px solid black;
}
#toernooimenu {
    position: absolute;
    background: white;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
    padding: 10px;
    z-index: 1000;
}
#toernooimenu a {
    color: black;
    text-decoration: none;
}
#toernooimenu a:visited {
    color:black;
}
.edittable {
    border: 0px;
    width: auto;
}


/* button */
.button-15 {
  background-image: linear-gradient(#42A1EC, #0070C9);
  border: 1px solid #0077CC;
  border-radius: 4px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  direction: ltr;
  display: inline-block;
  font-family: "SF Pro Text","SF Pro Icons","AOS Icons","Helvetica Neue",Helvetica,Arial,sans-serif;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -.022em;
  line-height: 1.47059;
  min-width: 30px;
  overflow: visible;
  padding: 4px 15px;
  text-align: center;
  /* vertical-align: baseline; */
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  white-space: nowrap;
}

.button-15:disabled {
  cursor: default;
  opacity: .3;
}

.button-15:hover {
  background-image: linear-gradient(#51A9EE, #147BCD);
  border-color: #1482D0;
  text-decoration: none;
}

.button-15:active {
  background-image: linear-gradient(#3D94D9, #0067B9);
  border-color: #006DBC;
  outline: none;
}

.button-15:focus {
  box-shadow: rgba(131, 192, 253, 0.5) 0 0 0 3px;
  outline: none;
}

#popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

#popup {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 20px;
  border-radius: 8px;
  z-index: 1000;
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

#popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
}

.hiddenmsg {
  margin-left: 8px;
  color: green;
  opacity: 0;
  transition: opacity 0.4s ease;
  display: inline-block;
}

.hiddenmsg.show {
  opacity: 1;
}

