.atomic-tooltip {
    position: relative;
    /*display: inline-block;*/
}

.atomic-tooltip .atomic-tooltiptext {
    visibility: hidden;
    width: 140px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    position: absolute;
    z-index: 1;
    bottom: 150%;
    left: 50%;
    margin-left: -75px;
    opacity: 0;
    transition: opacity 0.3s;
}

.atomic-tooltip .atomic-tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.atomic-tooltip:hover .atomic-tooltiptext {
    visibility: visible;
    opacity: 1;
}

.atomic-dropbtn {
    background-color: #3498DB;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.atomic-dropbtn:hover,
.atomic-dropbtn:focus {
    background-color: #2980B9;
}

.atomic-dropdown {
    position: relative;
    display: inline-block;
}

.atomic-dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    overflow: auto;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.atomic-dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.atomic-dropdown a:hover {
    background-color: #ddd;
}

.atomic-show {
    display: block;
}
