/* Shared page skeleton — fixed header + generic body (overlay) */

.app-container {
    position: relative;
}

[data-page-skeleton] {
    position: absolute;
    inset: 0;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    background: #f8f9fd;
    border-radius: 12px;
    overflow: hidden;
}

.page-skeleton__header-btn {
    width: 30px;
    height: 30px;
    border-radius: 5px;
    flex-shrink: 0;
}

.page-skeleton__header-title {
    height: 14px;
    width: 90px;
    border-radius: 4px;
    margin-left: auto;
}

.page-skeleton__header-divider {
    width: 1px;
    height: 24px;
    background: #D0D3D4;
    flex-shrink: 0;
}

.page-skeleton__header-logo {
    width: 35px;
    height: 35px;
    border-radius: 8px;
    flex-shrink: 0;
}

.page-skeleton__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.page-skeleton__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}

.page-skeleton__lines {
    flex: 1;
    min-width: 0;
}

.page-skeleton__lines .placeholder {
    display: block;
    height: 12px;
    border-radius: 4px;
}

[data-page-skeleton] .placeholder {
    background-color: #ced4da;
}
