.page {
    gap: 0.75rem;
    padding-top: 0;
}

.profile-hero {
    --profile-hero-gap: 0.5rem;
    --profile-hero-open-top: calc(var(--menu-row-h) + var(--profile-hero-gap));
    --profile-hero-show-duration: 0.35s;
    --profile-hero-hide-duration: 1.5s;

    position: sticky;
    top: var(--profile-hero-open-top);
    z-index: 950;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;

    max-width: var(--menu-max-w);
    width: calc(100% - 2rem);
    margin: var(--profile-hero-gap) auto 0;
    padding: 0.875rem 1.25rem;

    border: 1px solid var(--neutral-700);
    border-radius: 1.5rem;
    overflow: visible;
    overflow-anchor: none;

    box-shadow: 0 8px 10px -4px rgba(0, 0, 0, 0.7),
    0 1px 0 rgba(255, 255, 255, 0.04) inset;

    background: radial-gradient(
            circle at 72px 50%,
            rgba(var(--blue-accent-rgb), 0.18) 0%,
            rgba(var(--blue-accent-rgb), 0.08) 26%,
            transparent 52%
    ),
    linear-gradient(
            90deg,
            rgba(var(--blue-accent-rgb), 0.055) 0%,
            rgba(var(--blue-accent-rgb), 0.018) 52%,
            transparent 100%
    ),
    var(--neutral-875);

    transition: none;
}

.profile-hero.is-scroll-animated {
    transition: top var(--profile-hero-show-duration) cubic-bezier(0.22, 1, 0.36, 1);
}

.profile-hero.is-scroll-animated.is-scroll-hidden {
    transition-duration: var(--profile-hero-hide-duration);
}

.profile-hero.is-scroll-hidden {
    top: -200px;
}

.profile-hero::before,
.profile-hero::after {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
}

.profile-hero::before {
    background-image: radial-gradient(
            circle,
            rgba(var(--blue-accent-rgb), 0.18) 1px,
            transparent 1.2px
    );
    background-size: 14px 14px;
    mask-image: radial-gradient(
            ellipse 72% 130% at 92px 50%,
            black 0%,
            black 24%,
            rgba(0, 0, 0, 0.72) 48%,
            transparent 100%
    );
    -webkit-mask-image: radial-gradient(
            ellipse 72% 130% at 92px 50%,
            black 0%,
            black 24%,
            rgba(0, 0, 0, 0.72) 48%,
            transparent 100%
    );
}

.profile-hero::after {
    background: radial-gradient(
            circle at 72px 50%,
            rgba(var(--blue-accent-rgb), 0.24) 0%,
            rgba(var(--blue-accent-rgb), 0.10) 34%,
            transparent 72%
    );
}

.profile-hero__content {
    min-width: 0;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.profile-hero__name-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem 0.6rem;
}

.profile-hero__name {
    color: var(--white);
    font-size: 2rem;
    line-height: 1;
    font-weight: 600;
    letter-spacing: -0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    padding-right: 0.1rem;
}

.profile-hero__name-link {
    color: inherit;
    text-decoration: none;
}

.profile-hero__badges:empty {
    display: none;
}

.profile-hero__badges {
    display: contents;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.profile-badge {
    position: relative;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    height: 1.875rem;
    gap: 0.5rem;
    padding: 0 12px;
    border-radius: 999px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    cursor: pointer;
}

.profile-badge svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.profile-hero__controls {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex: 0 0 auto;
    margin-left: auto;
}

.profile-hero__control {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}


.summary-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
}

.stat-card {
    --stat-rgb: var(--blue-accent-rgb);
    --stat-hover-duration: 0.62s;
    --stat-bg-hover-duration: 0.5s;
    position: relative;
    padding: 1.25rem 1rem;
    overflow: hidden;
    border: 1px solid var(--neutral-700);
    border-radius: var(--radius-lg);
    background: var(--neutral-800);
}

.stat-card::before {
    content: '';
    position: absolute;
    z-index: 0;
    top: -42%;
    right: -34%;
    width: 76%;
    height: 184%;
    border-radius: 50%;
    background: radial-gradient(ellipse at center,
    rgba(var(--stat-rgb), 0.22) 0%,
    rgba(var(--stat-rgb), 0.13) 34%,
    rgba(var(--stat-rgb), 0.045) 62%,
    transparent 78%
    );
    opacity: 1;
    transform: translateX(0);
    pointer-events: none;
    will-change: transform, opacity;
}

.stat-card::after {
    content: '';
    position: absolute;
    z-index: 0;
    top: -40%;
    right: -72%;
    width: 118%;
    height: 180%;
    border-radius: 999px;
    background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--stat-rgb), 0.035) 22%,
    rgba(var(--stat-rgb), 0.085) 52%,
    rgba(var(--stat-rgb), 0.13) 100%
    );
    opacity: 0;
    transform: translateX(0);
    pointer-events: none;
    will-change: transform, opacity;
}

.stat-card:hover::before {
    animation: statCardGlowCore var(--stat-bg-hover-duration) cubic-bezier(0.45, 0, 0.25, 1) forwards;
}

.stat-card:hover::after {
    animation: statCardGlowTail var(--stat-bg-hover-duration) cubic-bezier(0.45, 0, 0.25, 1) forwards;
}

@keyframes statCardGlowCore {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    62% {
        opacity: 1;
        transform: translateX(-180%);
    }

    72% {
        opacity: 0;
        transform: translateX(-245%);
    }

    73% {
        opacity: 0;
        transform: translateX(70%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes statCardGlowTail {
    0% {
        opacity: 0;
        transform: translateX(0);
    }

    8% {
        opacity: 1;
        transform: translateX(0);
    }

    64% {
        opacity: 1;
        transform: translateX(-190%);
    }

    76% {
        opacity: 0;
        transform: translateX(-260%);
    }

    77% {
        opacity: 0;
        transform: translateX(70%);
    }

    90% {
        opacity: 1;
        transform: translateX(24%);
    }

    100% {
        opacity: 0;
        transform: translateX(0);
    }
}

.stat-card__body {
    position: relative;
    z-index: 2;
    min-width: 0;
    max-width: calc(100% - 3.75rem);
}

.stat-card__label {
    margin: 0 0 1rem;
    font-size: 0.75rem;
    line-height: 1.15;
    color: var(--neutral-300);
    font-weight: 600;
    letter-spacing: 0.25px;
}

.stat-card__value {
    color: var(--white);
    font-family: var(--font-mono);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.5px;
    font-variant-numeric: tabular-nums;
}

.stat-card__subvalue {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 0.2rem 0.35rem;
    margin-top: 0.5rem;
    color: var(--neutral-400);
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.2;
}

.stat-card__subvalue-number {
    color: rgb(var(--stat-rgb));
    font-weight: 700;
    white-space: nowrap;
}

.stat-card__icon {
    position: absolute;
    z-index: 1;
    right: 1rem;
    top: 50%;
    display: grid;
    place-items: center;
    width: 4.5rem;
    height: 4.5rem;
    color: rgba(var(--stat-rgb), 1);
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    transform: translateY(-50%);
    pointer-events: none;
}

.stat-card__icon svg {
    width: 3.4rem;
    height: 3.4rem;
}


.chart-card {
    min-width: 0;
    background: var(--neutral-800);
    border: 1px solid var(--neutral-700);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.chart-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--neutral-750);
    flex-wrap: wrap;
}

.chart-card__title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
}

.chart-card__title {
    font-size: 13px;
    font-weight: 600;
    color: var(--neutral-100);
}

.chart-card__sub {
    font-size: 12px;
    color: var(--neutral-400);
}

.chart-card__body {
    padding: 16px;
    position: relative;
}

.chart-card__body canvas {
    width: 100% !important;
    height: 100% !important;
}

.chart-help {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.125rem;
    height: 1.125rem;
    padding: 0;
    border: 1px solid var(--neutral-700);
    border-radius: 50%;
    background: transparent;
    color: var(--neutral-400);
    font-family: var(--font-mono);
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: 1;
    cursor: help;
    transition: opacity var(--t),
    color var(--t),
    border-color var(--t),
    background var(--t);
}

.chart-help::before {
    content: 'i';
}

.chart-help:hover,
.chart-help:focus-visible {
    color: var(--neutral-200);
    border-color: rgba(59, 130, 246, 0.55);
    background: rgba(26, 111, 212, 0.08);
    outline: none;
}

.chart-tooltip {
    position: fixed;
    z-index: 1000;
    pointer-events: none;
    max-width: min(280px, calc(100vw - 16px));
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid var(--neutral-600);
    background: var(--neutral-750);
    color: var(--neutral-200);
    font-family: var(--font-mono);
    font-size: 12px;
    line-height: 1.35;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: none;
    transition: opacity 80ms ease;
    white-space: normal;
}

.chart-tooltip__title {
    color: var(--neutral-100);
    font-weight: 600;
    margin-bottom: 4px;
}

.chart-empty-state {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    text-align: center;
    padding: 24px;
}

.chart-empty-state__title {
    font-size: 28px;
    font-weight: 600;
    color: var(--neutral-100);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.chart-empty-state__subtitle {
    margin-top: 10px;
    font-size: 13px;
    color: var(--neutral-400);
}


@media (max-width: 1000px) {
    .summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .page {
        gap: 0.5rem;
    }

    .profile-hero {
        align-items: stretch;
        min-height: auto;
        width: calc(100% - 1rem);
        padding: 0.75rem;
    }

    .profile-hero__controls,
    .profile-hero__control {
        width: auto;
        align-self: flex-end;
        margin-left: 0;
        justify-content: flex-end;
    }

    .profile-hero__control .period-picker,
    .profile-hero__control .pp-trigger {
        width: 100%;
    }

    .profile-hero__control .pp-trigger {
        justify-content: center;
    }

    .profile-hero__content {
        gap: 0.875rem;
    }

    .profile-hero__name-row {
        gap: 1rem;
    }

    .profile-hero__name {
        font-size: 1.75rem;
    }

    .profile-hero__badges {
        gap: 0.5rem;
    }

    .profile-badge {
        height: 1.625rem;
        gap: 0.375rem;
        padding: 0 10px;
        font-size: 11px;
        letter-spacing: 0.35px;
    }

    .profile-badge svg {
        width: 12px;
        height: 12px;
    }

    .summary-grid {
        gap: 0.5rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-card__label {
        font-size: 0.6875rem;
        margin-bottom: 0.6875rem;
    }

    .stat-card__value {
        font-size: 1.5rem;
    }

    .stat-card__subvalue {
        font-size: 0.75rem;
        margin-top: 0.375rem;
    }

    .stat-card__icon {
        right: 0.75rem;
    }

    .chart-card {
        border-radius: 0.875rem;
    }

    .chart-card__header {
        padding: 0.75rem 0.875rem;
        gap: 0.45rem 0.75rem;
    }

    .chart-card__title {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .chart-card__sub {
        font-size: 0.6875rem;
    }

    .chart-card__body {
        padding: 0.75rem;
    }

    .chart-help {
        width: 1rem;
        height: 1rem;
        font-size: 0.5625rem;
    }

    .chart-tooltip {
        padding: 0.45rem 0.55rem;
        font-size: 0.6875rem;
        line-height: 1.3;
    }

    .chart-empty-state__title {
        font-size: 1.5rem;
    }

    .chart-empty-state__subtitle {
        margin-top: 0.45rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 500px) {
    .profile-hero {
        --profile-hero-hide-duration: 1.2s;
        flex-direction: column;
        padding: 0.5rem;
        border-radius: var(--radius-lg);
    }

    .profile-hero__content {
        /*flex-wrap: wrap;*/
        gap: 0.5rem;
    }

    .profile-hero__name-row {
        gap: 0.5rem;
    }

    .profile-hero__name {
        font-size: 1.75rem;
    }

    .profile-hero__badges {
        gap: 0.5rem;
    }

    .profile-badge {
        height: 1.625rem;
        gap: 0.375rem;
        padding: 0 10px;
        font-size: 11px;
        letter-spacing: 0.35px;
    }

    .profile-badge svg {
        width: 12px;
        height: 12px;
    }

    .summary-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .stat-card {
        padding: 0.875rem 1rem;
        border-radius: 1rem;
    }

    .stat-card__label {
        margin-bottom: 0.45rem;
        font-size: 0.675rem;
        line-height: 1.1;
    }

    .stat-card__value {
        font-size: 1.42rem;
        line-height: 1;
    }

    .stat-card__subvalue {
        margin-top: 0.3rem;
        font-size: 0.7rem;
        line-height: 1.15;
    }

    .stat-card__icon {
        right: 0.875rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .profile-hero {
        transition: none;
    }
}


.period-picker {
    position: relative;
}

.pp-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 37px;
    padding: 0 14px;
    background: var(--neutral-800);
    border: 1px solid var(--neutral-700);
    border-radius: var(--radius-md);
    color: var(--neutral-200);
    font-family: var(--font-mono);
    font-size: 13px;
    cursor: pointer;
    transition: border-color var(--t);
    white-space: nowrap;
}

.pp-trigger:hover {
    border-color: var(--neutral-500);
}

.pp-trigger svg {
    color: var(--neutral-500);
    flex-shrink: 0;
}

.pp-arrow {
    margin-left: 2px;
    transition: transform var(--t);
}

.pp-trigger.open .pp-arrow {
    transform: rotate(180deg);
}

.pp-panel {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    z-index: 200;
    background: var(--neutral-750);
    border: 1px solid var(--neutral-700);
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-width: 680px;
    opacity: 0;
    transform: translateY(2rem);
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
}

.pp-panel.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.pp-panel[hidden] {
    display: block;
    visibility: hidden;
}

.pp-panel-body {
    display: flex;
}

.pp-sidebar {
    width: 168px;
    flex-shrink: 0;
    border-right: 1px solid var(--neutral-700);
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pp-sb {
    width: 100%;
    padding: 8px 10px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--neutral-300);
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-align: left;
    cursor: pointer;
    transition: all var(--t);
}

.pp-sb:hover {
    background: var(--neutral-700);
    color: var(--neutral-100);
}

.pp-sb.active {
    background: var(--blue-500);
    color: #fff;
    font-weight: 600;
}

.pp-cals {
    flex: 1;
    display: flex;
    gap: 16px;
    padding: 14px 16px;
}

.pp-cal {
    flex: 1;
    min-width: 0;
}

.pp-cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.pp-cal-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--neutral-100);
    font-family: var(--font-mono);
}

.pp-nav {
    background: none;
    border: none;
    color: var(--neutral-500);
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    line-height: 1;
    transition: all var(--t);
}

.pp-nav:hover {
    background: var(--neutral-700);
    color: var(--neutral-100);
}

.pp-nav.hidden {
    visibility: hidden;
}

.pp-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
}

.pp-dow {
    font-size: 10px;
    color: var(--neutral-400);
    text-align: center;
    padding: 3px 0;
    font-family: var(--font-mono);
    margin-bottom: 2px;
}

.pp-day {
    font-size: 12px;
    text-align: center;
    padding: 5px 2px;
    border-radius: 4px;
    cursor: pointer;
    color: var(--neutral-200);
    background: transparent;
    border: none;
    font-family: var(--font-mono);
    transition: background var(--t);
    line-height: 1.3;
}

.pp-day:hover:not(.pp-day-empty) {
    background: var(--neutral-700);
}

.pp-day-empty {
    color: var(--neutral-600);
    cursor: default;
}

.pp-day-inrange {
    background: rgba(26, 111, 212, 0.18);
    border-radius: 0;
}

.pp-day-start {
    background: var(--blue-500) !important;
    color: #fff;
    border-radius: 4px 0 0 4px;
}

.pp-day-end {
    background: var(--blue-500) !important;
    color: #fff;
    border-radius: 0 4px 4px 0;
}

.pp-day-start.pp-day-end {
    border-radius: 4px;
}

.pp-day-today {
    color: var(--blue-300);
    font-weight: 600;
}

.pp-footer {
    border-top: 1px solid var(--neutral-700);
    padding: 10px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pp-time-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pp-time-group {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pp-time-lbl {
    font-size: 0.6875rem;
    color: var(--neutral-400);
    font-family: var(--font-mono);
    min-width: 22px;
}

.pp-time-inp {
    background: var(--neutral-850);
    border: 1px solid var(--neutral-700);
    border-radius: var(--radius-sm);
    color: var(--neutral-200);
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 4px 8px;
    outline: none;
    width: 92px;
    transition: border-color var(--t);
    color-scheme: dark;
}

.pp-time-inp:focus {
    border-color: var(--blue-400);
}

.pp-time-inp::-webkit-calendar-picker-indicator {
    opacity: 0.7;
    cursor: pointer;
}

.pp-step-group {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
}

.pp-step-sel {
    background: var(--neutral-850);
    border: 1px solid var(--neutral-700);
    border-radius: var(--radius-sm);
    color: var(--neutral-200);
    font-family: var(--font-mono);
    font-size: 12px;
    padding: 4px 8px;
    outline: none;
    cursor: pointer;
    transition: border-color var(--t);
    color-scheme: dark;
}

.pp-step-sel:focus {
    border-color: var(--blue-400);
}

.pp-action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.pp-range-info {
    font-size: 0.6875rem;
    color: var(--neutral-400);
    font-family: var(--font-mono);
}

.pp-range-info strong {
    color: var(--neutral-300);
}

.pp-btns {
    display: flex;
    gap: 6px;
}

.pp-btn-reset {
    padding: 5px 12px;
    background: transparent;
    border: 1px solid var(--neutral-700);
    border-radius: var(--radius-sm);
    color: var(--neutral-400);
    font-family: var(--font-mono);
    font-size: 12px;
    cursor: pointer;
    transition: all var(--t);
}

.pp-btn-reset:hover {
    border-color: var(--neutral-500);
    color: var(--neutral-200);
}

.pp-btn-apply {
    padding: 5px 16px;
    background: var(--blue-500);
    border: none;
    border-radius: var(--radius-sm);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 12px;
    cursor: pointer;
    transition: background var(--t);
}

.pp-btn-apply:hover {
    background: var(--blue-400);
}

@media (max-width: 800px) {
    .period-picker {
        position: relative;
        min-width: 0;
        margin-left: auto;
    }

    .pp-trigger {
        max-width: min(100%, calc(100vw - 24px));
    }

    .pp-trigger [data-pp-label] {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .pp-panel {
        position: fixed;
        top: var(--pp-panel-top, calc(100% + 6px));
        right: auto;
        left: var(--pp-panel-left, 12px);
        z-index: 1200;
        width: var(--pp-panel-width, min(420px, calc(100vw - 24px)));
        min-width: 0;
        max-width: calc(100vw - 24px);
        max-height: var(--pp-panel-max-height, calc(100dvh - 90px));
        overflow-y: auto;
        overscroll-behavior: contain;
        border-radius: var(--radius-lg);
    }

    .pp-panel-body {
        flex-direction: column;
    }

    .pp-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--neutral-700);
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 4px;
        padding: 8px;
    }

    .pp-sb {
        min-width: 0;
        width: auto;
        padding: 8px 4px;
        text-align: center;
    }

    .pp-cals {
        flex-direction: row;
        gap: 8px;
        padding: 10px 12px;
    }

    .pp-cal {
        min-width: 0;
    }

    .pp-footer {
        padding: 10px 12px;
    }

    .pp-time-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    .pp-step-group {
        margin-left: 0;
    }

    .pp-action-row {
        align-items: stretch;
    }

    .pp-range-info {
        width: 100%;
    }

    .pp-btns {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 500px) {
    .pp-panel {
        width: var(--pp-panel-width, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
        max-height: var(--pp-panel-max-height, calc(100dvh - 90px));
    }

    .pp-sidebar {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pp-sb {
        font-size: 0.6875rem;
    }

    .pp-cals {
        display: block;
        padding: 10px 12px;
    }

    .pp-cal {
        width: 100%;
        min-width: 0;
    }

    .pp-cal[data-pp-cal-left] {
        display: none;
    }

    .pp-cal[data-pp-cal-right] {
        display: block;
    }

    .pp-cal[data-pp-cal-right] .pp-nav.hidden {
        visibility: visible;
    }

    .pp-cal-title {
        font-size: 0.75rem;
    }

    .pp-time-lbl,
    .pp-range-info {
        font-size: 0.625rem;
    }

    .pp-day {
        padding: 6px 2px;
    }

    .pp-footer {
        padding: 10px 12px;
    }
}
