body {
  font-family: Arial;
  padding: 10px;
  background: #000000;
  color: #FFFFFF;
}
   
body, html {height: 100%}


/* Buttons oben */


 .tab {
      background-color: #000;
      padding:  8px;
	  margin: 0px 0px;
      border-bottom: 0px solid #ccc;
      text-align: center;
      white-space: nowrap;
      overflow-x: auto;
    }

   .tab button {
      background-color: #333;
      color: #fff;
      border: 1px solid #ccc;
      margin: 7px 2px;
      padding: 5px 10px;
      font-size: 20px;
	   font-weight: normal;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      border-radius: 5px;
      display: inline-block;
      cursor: pointer;
      white-space: nowrap;

      position: relative;
      top: 0;
      left: 0;
      box-shadow: 1px 1px 0px #bbb;
      transition: all 0.4s ease-in-out;
    }

    .tab button:hover {
      background-color: #888;
	  
		font-weight: normal;
      transform: translateY(0px);
    }

    .tab button.active {
      background-color: #eee;
      color: #000;
      font-weight: normal;
      box-shadow: 0px 0px 0px #666;
      top:  2px;
      left:  2px;
      z-index: 1;
    }
 
/* Klick-Feedback */
.tab button:active {
  box-shadow: 6px 0px 0px #666;
      top:  2px;
      left:  2px;
}

.tabcontent {
  display: none;
  animation: fadeEffect 0.6s ease-in-out; 
  border-top: none;
  border-bottom: none;
  
 /* overflow-y: auto; */
  overflow-x: hidden; 
}

@keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* table */

.tableDataBorderedColorBlack {
  border:1px solid black;
}
.tableDataBorderedColor {
  border:1px solid red;
}
.tableDataBorderedColorRegister {
  border:2px solid black;
}
.tableDataBorderedColorAufblende {
  border:1px solid black;
   text-align: center;
   vertical-align: bottom;
   margin-top: 0px;
  margin-bottom: 0px;
} 

.tableDataBorderedUpdates { 
   text-align: left; 
   vertical-align: top;
    padding:  0px  0px 0px 0px; 
   margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
}

 
.tableDataDetails {
  text-align: left;
  vertical-align: top;
  border:1px solid white;
  padding:  0px  0px 0px 0px;
   margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
} 
.tr { 
  padding:  0px  0px 0px 0px; 
   margin-top: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  margin-right: 0px;
} 


td.top {
	border:1px solid red;	
   vertical-align: top;
}  

.w3-left, .w3-right, .w3-badge {
    cursor: default;
}


/* artwork portraits */
.centerImg {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}



.hrDetails { 
  display: block;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
  border-width: 2px;
} 

 
.hrMakingOf { 
  display: block;
  margin-top: 0em;
  margin-bottom: 0em;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
  border-width: 4px;
   clear: left;
} 

.hrAufblende { 
  display: block;
  margin-top: 0px;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  border-style: inset;
  border-width: 2px;
} 



.modal-header {
    padding: 0px;
    text-align: center;
    position: sticky;
    top: 0; /* Ensures the header sticks to the top */
    background-color: #ffffff; /* Optional: to ensure the header is visible against the content */
    z-index: 100; /* Ensures the header is above the content */
}

.modal-content {
    max-height: calc(100vh - 200px); /* Adjust based on your header and footer heights */
    overflow-y: auto; /* Enables vertical scrolling */
}

 /* The Modal (background) */
.modalWarning {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modalWarning-content {
  color: #000;
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
} 