.wy-nav-content {
    max-width: 90%; /* Adjust this value as needed */
}

/* Highlight "Finish" in green */
td:contains("Finish") {
    background-color: #d4edda;
    color: #155724;
    font-weight: bold;
}

/* Highlight "Rough" in orange */
td:contains("Rough") {
    background-color: #fff3cd;
    color: #856404;
    font-weight: bold;
}

/* Tooltip container */
.tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 125%; /* Position the tooltip above the text */
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
}

/* Change all links to green */
a {
    color: green !important;
}

/* Change the hover color (optional) */
a:hover {
    color: darkgreen !important;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%; /* At the bottom of the tooltip */
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

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