table{
    width: 100%;
    border-collapse: collapse;
    position: relative;
    overflow: visible;
}

table td, table th {
    border: 1px solid black;
    padding: 8px;
    text-align: center;
    vertical-align: middle;
    white-space: normal;
    word-wrap: break-word;
    width: 75px;
    position: relative;
    overflow: visible;
}
/* Spezielle Spaltenbreiten */
table td.wide, table th.wide {
    width: 200px; /* Breitere Spalte für "Telefon" */
}

table tr:nth-child(even){
    background-color: rgba(167, 167, 167, 0.308);
}




  .tooltip-cell {
    position: relative;
    text-decoration: underline dotted #0077cc;
    text-underline-offset: 3px;
  }
  
  .tooltip-cell .custom-tooltip {
    position: absolute;
    top: 120%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333333;
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.85rem;
    white-space: nowrap;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
  }
  
  .tooltip-cell:hover .custom-tooltip {
    opacity: 1;
  }
  
  .expandable-cell {
    position: relative;
    cursor: pointer;
    max-width: 300px;
    overflow: visible;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.cell-preview::after {
    content: " ℹ️";
    float: right;
    color: #aaa;
    font-size: 12px;
    margin-left: 5px;
}

.cell-full {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 10;
    background-color: #bebebe;
    color: rgb(0, 0, 0);
    padding: 10px;
    border: 1px solid #555;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
    min-width: 250px;
    white-space: pre-line;
}

.expandable-cell:hover .cell-full {
    display: block;
}

/*=====================================*/
#notamViewTitle{
    text-align: center;
}
#notamSearch{
    display: block;
    width:50%;
    height: 30px;
    margin: 0 auto;
}
#notamTable{
  max-height: 100vh;
  overflow-y: auto; 
  padding: 10px;  
}



#airspaceViewTitle{
  text-align: center;
  margin-top: 10px;
}

#airspaceViewSelectButtons{
  display: flex;
  justify-content: center;
  margin: 20px;
}

.airspaceViewButton{
  width: 100px;
  height: 30px;
  margin-right: 10px
}