/* Basic styling */
input {
  padding: 0.5em
}
select {
  appearance: auto;
  padding: 0.5em
}
.inheritance-calculator-container {  
  margin: 1em 0;
  padding: 1em;    
  max-width: 100%;
}

.inheritance-calculator-container h2 {
  margin-top: 0;
}

.calc-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  align-items: flex-end;
  margin-bottom: 1em;
}

.calc-controls > div {
  display: flex;
  flex-direction: column;
}

.calc-controls label {
  font-weight: bold;
  margin-bottom: 0.25em;
}

.button-row {
  display: flex;
  flex-direction:row !important;
  gap: 0.5em;
}

#inheritance-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

#inheritance-table th, 
#inheritance-table td {
  border: 2px dashed #D9F5FE;
  border-bottom: 0 !important;
  padding: 0.5em;
  text-align: center;
  vertical-align: middle;
}

#inheritance-table th {  
}

.col-addremove {
  width: 80px;
  border-radius: 30px 0 0 30px;    
  border-left: 0 !important;
}
.col-overall {
  border-radius: 0 30px 30px 0;    
  border-right: 0 !important;
}
.overall-score-cell {
  border-radius: 0 30px 30px 0;    
  border-right: 0 !important;
}
th {
  border: 0 !important;
}
table {
  border-left: 0 !important;
  border-right: 0 !important;
}
.score-input {
  width: 60px;
  text-align: center;
}

.hidden {
  display: none;
}

.i1-locked {
  background-color: #eee !important;
  pointer-events: none;
}
.na-locked {
  background-color: #eee !important;
  pointer-events: none;
}
.mm-locked {
  background-color: #eee !important;
  pointer-events: none;
}
.tooltip {
  position: relative;
  display: inline-block;
  color: var(--primary);
  border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 500px;
   display: grid;
  background: linear-gradient(90deg, #232964 1.72%, #4851A5 100%);
  /* Two columns: title on the left, date or subtitle on the right */
  grid-template-columns: 1fr auto;
  align-items: center;
  background-color: #0A67B1; /* or any other blue shade */
  color: #ffffff;
  padding: 16px;
  border-radius: 8px;
 
  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}
.intro-text{
  width: 70%;
}
select {  
  padding
  border-radius: 12px;
  padding: 1em;
  margin: 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  
  z-index: 1;
  
  &::-ms-expand {
    display: none;
  }  
  outline: none;
}
@media print{
    .footer {
    display: none;
  }

    .header__container {
     display: none;
  }
  #airplane-wrap {
    display: none;
  }
  #lpPanelNavButtonLinklpPanelSectionChatContainer{
    display: none;
  }
}