/* Shared footer — logged-in client & counsellor screens */
.page-wrapper .body-wrapper.client-body-with-footer {
    display: flex;
    flex-direction: column;
    min-height: calc(100vh - 68px);
}

.page-wrapper .body-wrapper.client-body-with-footer .bodywrapper__inner {
    flex: 1 0 auto;
}

.client-app-footer {
    flex-shrink: 0;
    width: 100%;
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid #e2e8f0;
    background: #fff;
    box-sizing: border-box;
}

.client-app-footer__inner {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.client-app-footer__line {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    color: #94a3b8;
    white-space: nowrap;
}

.client-app-footer__line > span,
.client-app-footer__line > a {
    display: inline !important;
    flex: 0 0 auto;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
    white-space: nowrap;
}

.client-app-footer__sep {
    margin: 0 0.35rem;
    color: #94a3b8;
    user-select: none;
}

.client-app-footer__line a {
    color: #64748b;
    text-decoration: none;
}

.client-app-footer__line a:hover {
    color: #26ba9b;
    text-decoration: underline;
}

@media (max-width: 575px) {
    .client-app-footer {
        padding: 1rem;
    }
}
