.user_tabs { 
    background-color: transparent;
    display: flex;
    gap: 10px;
    max-width: 1200px;
    margin: 8px auto;
    padding: 0 20px;
}
.left_subnav, .center_subnav, .right_subnav{
    padding: 10px;
}
.left_subnav{
    flex: 0 0 20%;
    color: var(--green);
}
.center_subnav{
    flex: 0 0 40%;
 text-align: center;
 color:bisque;
 letter-spacing: 0.3rem;
 font-weight: bold;
 font-size: 0.8rem;
}
.right_subnav{ 
    flex: 0 0 40%;
    display: flex;
    justify-content: flex-end; 
    gap: 10px;
}

.right_subnav a{
    text-decoration: none;   /* Removes the default underline */
    color: inherit;          /* Optional: Keeps the text color matching your layout */
    display: inline-flex;    /* Keeps icons and text aligned neatly together */
    align-items: center;
    font-size: 22px;
}
