.coming-soon {
    position: relative;
    display: inline-block; /* Ensures the tooltip aligns correctly */
}

a {
    position: relative;
    display: inline-block;
}

.tooltip {
    visibility: hidden;
    width: auto; /* Adjust width as needed */
    background-color: #ffeb3b; /* Light pastel yellow */
    color: black;
    text-align: center;
    border-radius: 10px; /* Rounded edges */
    padding: 5px 10px; /* Space around text */
    position: absolute;
    z-index: 1;
    bottom: 100%; /* Position the tooltip above the link */
    left: 80%;
    transform: translateX(-50%); /* Center the tooltip */
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap; /* Prevents the tooltip from wrapping */
}

.coming-soon:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

a:hover .tooltip {
    visibility: visible;
    opacity: 1;
}
