/* Outer .btn krijgt de knop styling */
a.btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(to bottom, #898888, #666666);
  border: 1px solid #232323;
  border-radius: 4px;                /* iets minder afgerond */
  padding: 4px 6px;                 /* compacter */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 11px;                   /* kleiner lettertype */
  font-weight: bold;
  text-transform: uppercase;
  margin-right: 3px;
  cursor: pointer;
  user-select: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 1px 2px rgba(0,0,0,0.15); /* subtieler */
  transition: background 0.2s ease, box-shadow 0.2s ease;
}


a.btn:hover,
a.btn:focus {
  background: linear-gradient(to top, #898888, #666666);
  box-shadow: 0 4px 8px rgba(0,0,0,0.25);
  transform: translateY(-1px);
  outline: none;
  text-decoration: none;
}

a.btn a.btn:hover,
a.btn a.btn:focus {
  /* geen hover effect */
  background: none;
  box-shadow: none;
  transform: none;
  outline: none;
  text-decoration: none;
}
/* ALLE .btn binnen een .btn krijgen alle styling uit */
.btn .btn,
.btn .btn * {
  all: unset;
  /* eventueel: reset padding/margin zodat het geen styling meer meebrengt */

  /* enzovoorts, alles wat button styling is */
}
/* Verwijder whitespace/spacers naast de knop */
.btn_left, .btn_right {
  display: none; /* of padding: 0; margin: 0; */
  width: 0;
  min-width: 0;
}

td[id^="td_left_"], td[id^="td_right_"] {
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  min-width: 0 !important;
}

a.btn > table {
  margin: 0 !important;
  padding: 0 !important;
  border-spacing: 0 !important;
  border-collapse: collapse !important;
}


 div.btn{
  display: inline-block;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 8px 16px;
  color: #fff;
  background: linear-gradient(to bottom, #898888, #666666); /* warm oranje/bruin */
  border: 1px solid #924f00;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 2px 4px rgba(0,0,0,0.2);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

/* Oude <span>s uitschakelen (indien aanwezig) */
/* a.btn span {
  display: none !important;
} */






div#login-buttons {
  align-items:center;
  /* float:left; */
  clear:both;
  height:100%;
}

div#login-buttons h4{
  padding-top:0px;
  margin-top:0px;
  line-height:15px;
}

ul.login-buttons {
    margin-bottom: 28px;
}
ul.login-buttons li {
    display: block;
    margin-right: 9px;
}
ul.login-buttons li:last-child {
    margin-right: 9px;
}
ul.login-buttons li a {
    border: 1px solid #006C6F;
    background-color: #EEEEEE;
    color: #006C6F;
    display: block;
    font-weight: normal;
    padding-left: 8px;
    transition: background-color 200ms ease-in 0s;
    height : 64px;
    text-align: left;
    border-radius: 10px;
}

ul.login-buttons li a:hover {
    background-color: #D9E9EA;
    border: 2px solid #000000;
    color: #100f0f;
    text-decoration: none;
}

.tab_inactive, .tab_active {
    background-image: none;
    border: 1px #7FB6B6 solid;
    border-bottom: none;
    border-radius: 5px 5px 0px 0px;
    box-shadow: 5px 0px 2px #888888;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 1px;
    padding-bottom: 1px;
    margin-left: 2px;
    margin-right: 2px;

    min-width: 88px;
    width: auto;
}

.tab_active a:hover {
  text-decoration: none;
  cursor: default;
}

.tab_active{
  z-index: 999999;
  background-color:#DDD;
  
}

.tab_fill{
  background-image: none;
  border-bottom:1px #7FB6B6 solid;
  padding-top:20px;
  padding-left:10px;
}
