.buttonIcon {
    width: 100px;
    gap: 5px;
    padding: 5px 10px;
    border-radius: 8px;
    border: none;
    align-items: center;
    justify-content: center;
    display: inline-flex;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    position: relative;
}

.tooltip {
    position: absolute;
    z-index: 1;
    top: 10%;
    transform: translateX(0%) translateY(-10%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
    color: #fff;
    background: var(--transparency-background-color);
    border-radius: 0.3em;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-size: 14px;
    padding: 0.1em 1em;
    border: #fff 1px solid;
    white-space: nowrap;
}

.buttonIcon:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.buttonIcon:hover .tooltip,
.button-box:hover .tooltip{
    top: -100%;
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0%) translateY(0);
}

.Icon {
    width: 20px;
    height: 20px;
    justify-content: center;
    object-fit: contain;
    display: block;
}

.submitButton {
    background-color: var(--button-color);
    align-items: flex-start;
    margin: 0px 10px;
    width: 160px;
    height: 30px;
    box-sizing: border-box;
    border-radius: 0.2rem;
    border-bottom: 2px solid rgb(160, 242, 230);
    border-right: 2px solid rgb(160, 242, 230);
    border-top: 2px solid white;
    border-left: 2px solid white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    justify-content: center;
    text-align: center;
    align-self: flex-start;
    font-family: inherit;
    color: var(--button-color-text);
    font-size: inherit;
    gap: 8px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.submitButton:hover {
    box-shadow: 0 0 12px #88fff97e;
}

.submitButton::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 40px;
    inset: 0;
    background: white;
    mix-blend-mode: difference;
    border-radius: 200%;
    transform: translate(-100%, 50%);
}

.submitButton:hover::before {
    transition: 0.3s;
    transform: translate(0, 0);
    border-radius: 0;
}

.submitButton:active{
    transition: 0.3s;
    transform: translateY(5px);
}

.button-box,
.button-panel {
    display: inline-flex;
    justify-content: center;
    cursor: pointer;
    position: relative;
}

.button-box a.button,
.port-content a.button, 
.button-panel{
    position: relative;
    text-align: center;
    text-decoration: none;
    font-family: 'Times New Roman', Times, serif;
    align-items: center;
    width: 180px;
    font-size: clamp(0.8rem, 2vw, 1rem);
    height: auto;
    background: var(--button-color);
    border-bottom: 2px solid rgb(160, 242, 230);
    border-right: 2px solid rgb(160, 242, 230);
    border-top: 2px solid white;
    border-left: 2px solid white;
    color: var(--button-color-text);
    letter-spacing: 0.5px;
    font-weight: bold;
    transition: 0.6s;
    box-shadow: 0 0 12px var(--shadow-color);
    overflow: hidden;
    z-index: 1;
}

a.button::before,
.button-panel::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 40px;
    inset: 0;
    background: white;
    mix-blend-mode: difference;
    border-radius: 200%;
    transform: translate(-100%, 50%);
}

a.button:hover::before,
.button-panel:hover::before {
    transition: 0.3s;
    transform: translate(0, 0);
    border-radius: 0;
}

.button-box.download {
    margin: 20px;
}
