/* User Info Styling */
.user-login-info {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    height: 100%;
    border-right: 1px solid #ebebeb;
    width: 200px;
}

.user-login-info a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-size: 13px;
    font-weight: 500;
    color: #c9a74d;
    background-color: white;
    border-radius: 3px;
    border: 1px solid white;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
    line-height: 36px;
    height: 36px;
    width: 180px;
    text-align: center;
}

.user-login-info a:hover {
    background-color: #f8f9fa;
    color: #b89339;
}

.user-login-info a i {
    margin-right: 5px;
    font-size: 14px;
}

/* Responsive styles */
@media only screen and (max-width: 767px) {
    .user-login-info {
        width: 180px;
        min-width: auto;
        max-width: none;
        margin-right: 5px;
    }

    .user-login-info a {
        padding: 0;
        font-size: 12px;
        height: 30px;
        line-height: 30px;
        width: 160px;
        color: #c9a74d;
        background-color: white;
        border: 1px solid white;
    }
}
