
.profile-box {
    display: none;
    justify-content: start;
    flex-direction: row;
    width: 100%;
}

.profile-picture {
    width: 72px;
    height: 72px;
    border-radius: 72px;
    background: lightgray 50% / cover no-repeat;
    display: none;
}

.profile-details {
    display: flex;
    justify-content: start;
    flex-direction: column;
    width: 100%;
    padding: 12px 16px;
}

.profile-name {
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%;
    align-self: stretch;
}

.profile-id {
    color: rgba(0, 0, 0, 0.6);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    align-self: stretch;
}

.signOut {
    position: absolute;
    bottom: 74px;
    width: calc(100vw - 32px);
    display: none;
    padding: 7px 16px 8px 16px;
    margin: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.10);
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
}

.tab-logout {
    padding: 7px 16px 8px 16px;
    margin: 8px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.10);
    color: #000;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;

    width: 150px;
    display: none;
    height: fit-content;
    align-self: center;
}

@media (min-width: 769px) and (max-width: 1024px) {
    .tab-logout {
        display: flex;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .profile-box {
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }

    .profile-picture {
        width: 120px;
        height: 120px;
        border-radius: 120px;
    }

    .profile-details {
        align-items: center;
    }

    .profile-name {
        font-size: 16px;
        align-self: center;
    }

    .profile-id {
        align-self: center;
    }

    .signOut {
        display: none;
    }
}
