.tools-btn-container{
    display: flex;
    justify-content: center;
    align-items: center;
    
    position: absolute;
    top: 2rem;
    right: 2rem;
    gap: 0.5rem;
    flex-flow: row-reverse;
    z-index: 3;
}

.t-button{
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    border: none;
    background-color: transparent;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    color: rgba(var(--text-color), 0.7);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease-out;
    z-index: 3;
}

.t-button:hover{
    box-shadow: 0px 0px 5px 1px rgba(var(--text-color), 0.8);;
    background: rgba(var(--text-color), 0.2);
}

.t-button:active{
    box-shadow: 0px 0px 5px 1px rgba(var(--text-color), 0.2);
    background: rgba(var(--text-color), 0.1);
}

.t-button-activated{
    box-shadow: 0px 0px 5px 1px rgba(var(--text-color), 0.8);;
    background: rgba(var(--text-color), 0.2);
}