*{
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
body{
    font-family: Helvetica;
    -webkit-font-smoothing: antialiased;
    background: rgba( 240, 240, 240, 1);
}
a {
    color: green;
}
td {
    position: relative; /* Needed for positioning the tooltip */
}

.header {
    background: rgba(200,200,200,1);
}

.table_tariff {
    border-collapse: seperate;
    width: 100%;
    border-spacing: 0 15px;
}
.tr_tariff {background: #e2e2e2;
  -moz-border-radius: 15px;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  border-collapse: collapse;
  overflow: hidden;
  box-shadow: inset 0 0 0 3px #888;
}
.th_tariff, .td_tariff {
  padding: 8px;
  text-align: left;

}
.th_tariff {
  background-color:#c2c2c2;
}

.tooltip {
    cursor:pointer;
}

.tooltiptext {
    visibility: hidden;
    width: fit-content;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position the tooltip above the text */
    left: 50%;
    margin-left: -60px; /* Center the tooltip */
    opacity: 0; /* Hide the tooltip */
    transition: opacity 0.3s; /* Fade effect */
    white-space: nowrap; /* Prevent line breaks */
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1; /* Show the tooltip on hover */
}
