.cabinet-page {
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.cabinet-page .left,
.cabinet-page .right
{
    display: block;
    width: 100%;
}

.cabinet-page .left {
    max-width: 300px;
}

.user-nav {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
}

.user-nav li {
    display: block;
    margin-bottom: 5px;
}

.user-nav li a {
    display: block;
    text-decoration: none;
    color: black;
    border: 1px solid #f0f0f070;
    background-color: #f0f0f070;
    border-radius: 5px;
    padding: 5px 20px;
}
.user-nav li:hover a, .user-nav li.current_page_item a {
    color: white;
    border: 1px solid #2f6cb1;
    background: #2f6cb1;
}



.referral-url {
    display: block;
    position: relative;
    border: dotted 1px #133099;
    padding: 10px;
    font-size: 16px;
}

.referral-url span.copy {
    position: absolute;
    display: block;
    max-width: 50px;
    padding: 7px 10px;
    background: #133099;
    border-radius: 3px;
    color: white;
    top: 2px;
    bottom: 2px;
    right: 2px;
    text-align: center;
    cursor: pointer;
}

.referral-url span.copy:hover {
    opacity: 0.3;
}


.micros-button {
    background: #133099;
    border:none;
    color: white;
    border-radius: 3px;
    padding: 10px 15px;
}


@media screen and (max-width: 650px) {
    .cabinet-page {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .cabinet-page .left {
        max-width: auto;
    }

}
