/**
 * All-Projects page — projecteam-tools-ui redesign skin.
 *
 * Applied ONLY where the .ptui-page wrapper exists (the projects
 * index family: all/favorite/archived), loaded only by that view.
 * Restyles the page's EXISTING markup (Bootstrap cards, the status
 * rail, DataTable) to the redesign's design tokens — no shared
 * partial or layout was touched, so no other screen changes.
 *
 * Tokens come verbatim from the skill's base.css (design-tokens.md).
 * Deliberate deviations, per the skill's "state your assumptions":
 *  - The dark-navy topbar is a LAYOUT component shared by every
 *    screen, so it is out of scope for this page-only branch.
 *  - .num spans require markup edits in shared partials; instead the
 *    whole wrapper gets tabular numerals, which delivers the aligned
 *    digits the rule is after.
 */

.ptui-page {
    /* --- tokens (design-tokens.md) --- */
    --ink: #181425;
    --ink-soft: #5C5872;
    --ink-faint: #9694A8;
    --bg: #F1F2F8;
    --surface: #FFFFFF;
    --border: #E6E7F1;
    --border-soft: #EFF0F7;
    --brand: #E2265A;
    --brand-dark: #B71046;
    --brand-soft: #FCE6ED;
    --slate: #736F87;
    --slate-soft: #EDEDF4;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 9px;
    --shadow-card: 0 1px 2px rgba(24,20,37,.04), 0 10px 28px -16px rgba(24,20,37,.16);

    color: var(--ink);
    font-family: 'Heebo', sans-serif;
    font-variant-numeric: tabular-nums;
}

/* The lavender canvas is the PAGE background itself — this stylesheet
 * only loads on the projects page, so body-level overrides stay page-
 * scoped. The wrapper paints nothing of its own: it used to add a
 * rounded lavender layer on top of the theme's bluish page tone,
 * which read as a pointless background-on-background. */
body,
.main-content,
.page-content {
    background: #F1F2F8 !important;
}

/* --- cards: white surfaces on the canvas --- */
.ptui-page .card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
}

/* --- the one brand action: "Add project" (+ its template twin) --- */
.ptui-page .btn-colorful {
    background: var(--brand);
    border: 0;
    color: #fff;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: background .15s ease, transform .15s ease;
}
.ptui-page .btn-colorful:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-1px);
}

/* --- status rail → filter-list pattern (filter-row / fcount) --- */
.ptui-page .mail-list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    margin-bottom: 2px;
    border-radius: var(--radius-sm);
    color: var(--ink-soft);
    font-weight: 600;
    transition: background .12s ease, color .12s ease;
}
.ptui-page .mail-list a:hover {
    background: var(--slate-soft);
    color: var(--ink);
}
.ptui-page .mail-list a.active {
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-weight: 700;
}
.ptui-page .mail-list a > span {
    margin-right: auto;      /* RTL: pushes the counter to the row end */
    background: var(--slate-soft);
    color: var(--ink-soft);
    border-radius: 999px;
    padding: 1px 9px;
    font-size: 12px;
    font-weight: 700;
    float: none !important;  /* replaces the float-end hack */
}
.ptui-page .mail-list a.active > span {
    background: var(--surface);
    color: var(--brand-dark);
}

/* --- data table --- */
.ptui-page table.table thead th {
    background: var(--slate-soft);
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 700;
    border-bottom: 0;
}
.ptui-page table.table td {
    border-color: var(--border-soft);
    color: var(--ink);
}
.ptui-page table.table tbody tr:hover td {
    background: #FBFBFD;
}

/* --- view-switcher buttons on this page → segmented pills --- */
.ptui-page .btn-group .btn:not(.btn-colorful),
.ptui-page .nav-pills .nav-link {
    border-radius: 999px;
    font-weight: 600;
}
.ptui-page .nav-pills .nav-link.active {
    background: var(--surface);
    color: var(--brand-dark);
    box-shadow: var(--shadow-card);
}

/* --- info alert (favorites empty note) → soft banner --- */
.ptui-page .alert-info {
    background: var(--brand-soft);
    color: var(--brand-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* --- GridView pages (staff / clients / suppliers): the create button
 *     is the page's ONE brand action; filters and summary go quiet --- */
.ptui-page .btn-success {
    background: var(--brand);
    border: 0;
    color: #fff;
    font-weight: 700;
    border-radius: var(--radius-sm);
    transition: background .15s ease, transform .15s ease;
}
.ptui-page .btn-success:hover {
    background: var(--brand-dark);
    color: #fff;
    transform: translateY(-1px);
}
.ptui-page .grid-view .filters input,
.ptui-page .grid-view .filters select {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--surface);
}
.ptui-page .summary {
    color: var(--ink-faint);
    font-size: 13px;
}

/* --- status tabs strip (tasks page, tabs mode): quiet pill track --- */
.ptui-page .nav-tabs {
    border-bottom: 1px solid var(--border);
}
.ptui-page .nav-tabs .nav-link {
    border: 0;
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    font-weight: 600;
}
.ptui-page .nav-tabs .nav-link.active {
    background: var(--surface);
    box-shadow: var(--shadow-card);
}

/* --- pagination + DataTables chrome pick up the palette --- */
.ptui-page .page-item.active .page-link {
    background: var(--brand);
    border-color: var(--brand);
}
.ptui-page .page-link {
    color: var(--brand-dark);
}

/* ==================================================================
 * proj-top: title + action toolbar inside the header card
 * ================================================================== */
.ptui-page .ptui-proj-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}
/* pill + name share ONE line (the wrap was stacking them) */
.ptui-page .ptui-proj-title-wrap {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-wrap: wrap;
    min-width: 280px;
}
.ptui-page .ptui-proj-title {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.2px;
    line-height: 1.3;
    margin: 0;
    min-width: 240px;
}
/* status pill: the demo's .status-pill scale — readable, clearly
 * interactive. Colors keep coming from the status's own inline style;
 * this only upgrades geometry, type, the leading dot and the
 * affordance ring. */
.ptui-page .ptui-status-pill {
    display: inline-flex !important;
    align-items: center;
    gap: 7px;
    font-size: 12.5px !important;
    font-weight: 700;
    text-transform: none !important;
    letter-spacing: 0;
    padding: 6px 14px !important;
    border-radius: 100px !important;
    line-height: 1.2;
    transition: box-shadow .15s ease;
}
.ptui-page .ptui-status-pill::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: currentColor;
    flex-shrink: 0;
}
.ptui-page .ptui-status-pill:hover {
    box-shadow: 0 0 0 3px rgba(24, 20, 37, .08);
}
.ptui-page .ptui-status-pill .caret {
    margin-right: 3px;
}

/* task page header: the status-menu partial's controls arranged as the
 * demo toolbar — selects become pills, links become tbtns, and the
 * "completed late" note reads as a soft red chip */
.ptui-page .ptui-task-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    flex: 1;
}
/* order per the project page: pills hug the title (right), icons at
 * the far LEFT — the existing divider becomes the flexible spacer */
.ptui-page .ptui-task-menu .tba-divider {
    margin-right: auto;
    background: transparent;
}
/* status / priority dropdown anchors take the demo pill geometry */
.ptui-page .ptui-task-menu .dropdown > a.rounded {
    border-radius: 100px !important;
    padding: 5px 14px !important;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: none !important;
}
/* dates block: chip-like stacked meta (label above, bold value) */
.ptui-page .ptui-task-dates b {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--ink-faint);
    margin-top: 8px;
}
.ptui-page .ptui-task-dates label.dotted {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    border-bottom: 1px dashed var(--border);
    cursor: pointer;
}
.ptui-page .ptui-task-menu select.form-control,
.ptui-page .ptui-task-menu .form-control {
    width: auto;
    height: auto;
    border: 1.5px solid var(--border);
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 700;
    padding: 5px 14px;
    background-color: var(--surface);
}
.ptui-page .ptui-task-menu > a,
.ptui-page .ptui-task-menu .d-inline > a {
    min-width: 34px;
    height: 34px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-faint);
    transition: background .15s, color .15s;
}
.ptui-page .ptui-task-menu > a:hover,
.ptui-page .ptui-task-menu .d-inline > a:hover {
    background: var(--slate-soft);
    color: var(--ink);
}
.ptui-page .ptui-task-menu .text-danger {
    background: #FCE7E7;
    color: #DC3B3B !important;
    padding: 5px 12px;
    border-radius: 9px;
    font-size: 12.5px;
    font-weight: 600;
}

/* legacy _view_title action links take the tbtn geometry */
.ptui-page .ptui-proj-toolbar {
    display: flex;
    align-items: center;
    gap: 2px;
    flex-wrap: wrap;
}
.ptui-page .ptui-proj-toolbar > div.d-inline > a,
.ptui-page .ptui-proj-toolbar > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    border-radius: 9px;
    color: var(--ink-faint);
    transition: background .15s, color .15s;
}
.ptui-page .ptui-proj-toolbar > div.d-inline > a:hover,
.ptui-page .ptui-proj-toolbar > a:hover {
    background: var(--slate-soft);
    color: var(--ink);
}

/* ==================================================================
 * view-toolbar: the demo's single card row — view pills + subtasks
 * switch + brand add button at the far (left) end
 * ================================================================== */
.ptui-page .ptui-view-toolbar {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}
.ptui-page .ptui-view-toolbar .tasksMenu ul {
    display: flex;
    gap: 3px;
    background: var(--slate-soft);
    padding: 3px;
    border-radius: 10px;
    margin: 0 !important;
    list-style: none;
}
.ptui-page .ptui-view-toolbar .tasksMenu ul li {
    display: flex;
}
.ptui-page .ptui-view-toolbar .tasksMenu ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink-faint);
    white-space: nowrap;
}
.ptui-page .ptui-view-toolbar .tasksMenu ul li.active a {
    background: var(--surface);
    color: var(--ink);
    box-shadow: 0 1px 3px rgba(24, 20, 37, .10);
}
/* the subtasks-switch li rides OUTSIDE the pill look */
.ptui-page .ptui-view-toolbar .tasksMenu ul li.pb-2 {
    background: transparent;
    align-items: center;
    padding: 0 10px !important;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-soft);
    white-space: nowrap;
}
/* add-task button: brand, compact, pushed to the far (left) end */
.ptui-page .ptui-view-toolbar .ptui-vt-add {
    margin-right: auto;
}
.ptui-page .ptui-view-toolbar .ptui-vt-add .btn {
    margin-bottom: 0 !important;
    padding: 8px 18px;
    font-size: 13px;
}

/* ==================================================================
 * status filter rail (list mode) — demo's filter-list rows
 * ================================================================== */
.ptui-page .ptui-rail-head {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
    padding: 4px 2px;
}
.ptui-page .ptui-rail-head i {
    color: var(--ink-faint);
}
.ptui-page .status-rail .status-rail__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
}
.ptui-page .status-rail .status-rail__item:hover {
    background: var(--slate-soft);
}
.ptui-page .status-rail .status-rail__item.active {
    background: var(--brand-soft);
    color: var(--brand-dark);
}
.ptui-page .ptui-fname {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ptui-page .ptui-filter-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}
.ptui-page .ptui-fcount {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ink-faint);
    background: var(--slate-soft);
    border-radius: 100px;
    min-width: 22px;
    text-align: center;
    padding: 2px 6px;
    float: none !important;
}
.ptui-page .status-rail .status-rail__item.active .ptui-fcount {
    background: #fff;
    color: var(--brand-dark);
}

/* ==================================================================
 * comments composer — bordered box, brand send
 * ================================================================== */
/* placeholder/caret hug the box's right edge; the theme indented it */
.ptui-page .chat-input-section .chat-input {
    padding: 10px 14px !important;
    text-indent: 0 !important;
}
/* no gray divider between the card heading and the thread, and a
 * tighter gap between the heading and the input box */
.ptui-page .user-chat .chat-conversation {
    border-bottom: 0 !important;
    box-shadow: none;
    padding-top: 6px !important;
    padding-bottom: 4px !important;
}
.ptui-page .user-chat .chat-input-section {
    padding-top: 4px !important;
}

/* subtask expander box + hierarchy indent */
.ptui-page .ptui-subtask-toggle {
    font-size: 17px;
    color: var(--ink-faint);
    margin-top: 1px;
}
.ptui-page .ptui-subtask-toggle:hover {
    color: var(--brand-dark);
}

/* colorInput palette dropdown — the menu must grow to the grid, or
 * swatches spill past the white surface */
.pt-color-dd .dropdown-menu {
    min-width: max-content !important;
    width: max-content;
}
.pt-color-grid {
    display: grid;
    grid-template-columns: repeat(8, 22px);
    gap: 6px;
}
.pt-color-swatch {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 0, 0, .08);
}
.pt-color-swatch:hover {
    border-color: #1f2937;
}
.pt-color-swatch.pt-color-custom {
    background: #EDEDF4;
    color: #5C5872;
    font-size: 13px;
}
.ptui-page .user-chat .chat-input-section {
    border-top: 0 !important;
}
.ptui-page .user-chat hr {
    display: none;
}
/* composer action icons: consistent modern sizing */
.ptui-page .chat-input-links i {
    font-size: 18px;
    color: var(--ink-faint);
    vertical-align: middle;
}
.ptui-page .chat-input-links a:hover i {
    color: var(--ink);
}
/* the details-column toggle pins to the physical LEFT, above the
 * widgets column — the RTL build was flipping the float class */
#widget-col-toggle {
    float: left !important;
}
.ptui-page .chat-input-section .chat-input {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
}
.ptui-page .chat-input-section .chat-input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-soft);
}
.ptui-page .chat-input-section .btn-primary,
.ptui-page .chat-input-section button[type="submit"] {
    background: var(--brand);
    border-color: var(--brand);
    font-weight: 700;
    border-radius: var(--radius-sm);
}
.ptui-page .chat-input-section .btn-primary:hover,
.ptui-page .chat-input-section button[type="submit"]:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}

/* both columns open flush at the same line */
.ptui-page main > .ptui-proj-card,
.ptui-page aside > .card:first-child,
.ptui-page aside > div:first-child > .card:first-child {
    margin-top: 0;
}

/* ==================================================================
 * Sidebar widgets (the aside column) — the demo's side-stack look:
 * seg-tab pill track for the People tabs, 14px/800 card titles, the
 * save buttons as quiet-until-primary actions.
 * ================================================================== */
.ptui-page aside .card, .ptui-page .ptui-side .card {
    border-radius: var(--radius-md);
}
.ptui-page aside .card-title, .ptui-page .ptui-side .card-title,
.ptui-page aside h4.card-title, .ptui-page .ptui-side h4.card-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--ink);
}
/* People widget tabs -> seg-tabs: slate track, active = white pill */
.ptui-page aside .nav-tabs, .ptui-page .ptui-side .nav-tabs {
    background: var(--slate-soft);
    border-radius: 10px;
    padding: 3px;
    border-bottom: 0;
    gap: 2px;
    display: flex;
}
.ptui-page aside .nav-tabs .nav-item {
    flex: 1;
    text-align: center;
}
.ptui-page aside .nav-tabs .nav-link {
    border: 0;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink-faint);
    padding: 7px 6px;
}
.ptui-page aside .nav-tabs .nav-link.active {
    background: var(--surface);
    color: var(--ink);
    box-shadow: 0 1px 3px rgba(24, 20, 37, .10);
}
/* the save (add person) buttons: brand action */
.ptui-page aside .btn-info, .ptui-page .ptui-side .btn-info {
    background: var(--brand);
    border-color: var(--brand);
    font-weight: 700;
}
.ptui-page aside .btn-info:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}
/* member rows breathe like the demo */
.ptui-page aside .list-unstyled li {
    padding: 4px 0;
}
/* the always-visible details-column toggle */
.ptui-page #widget-col-toggle {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-faint);
}
.ptui-page #widget-col-toggle:hover {
    color: var(--brand-dark);
}

/* ==================================================================
 * Project header card (.ptui-proj-card) — the redesign demo's
 * proj-card: overdue banner, icon meta chips, per-status segbar.
 * Values copied from the reference page's CSS.
 * ================================================================== */
.ptui-page .ptui-proj-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 22px 24px 20px;
    margin-bottom: 18px;
}
.ptui-page .ptui-num {
    font-variant-numeric: tabular-nums;
    unicode-bidi: isolate;
    direction: ltr;
    display: inline-block;
}
.ptui-page .ptui-overdue-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--red-soft, #FCE7E7);
    border: 1px solid #F5C6C6;
    border-radius: var(--radius-sm);
    padding: 11px 14px;
    color: #DC3B3B;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 14px;
}
.ptui-page .ptui-overdue-banner i {
    font-size: 18px;
}
.ptui-page .ptui-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 26px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--border-soft);
}
.ptui-page .ptui-meta-item {
    display: flex;
    align-items: center;
    gap: 9px;
}
.ptui-page .ptui-meta-ico {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: var(--slate-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft);
    flex-shrink: 0;
    font-size: 16px;
}
.ptui-page .ptui-meta-label {
    display: block;
    font-size: 11.5px;
    color: var(--ink-faint);
    margin-bottom: 1px;
}
.ptui-page .ptui-meta-val {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
}
.ptui-page .ptui-progress-block {
    margin-top: 18px;
}
.ptui-page .ptui-progress-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 9px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--ink-soft);
}
.ptui-page .ptui-progress-pct {
    font-weight: 800;
    color: var(--ink);
}
.ptui-page .ptui-segbar {
    display: flex;
    height: 9px;
    border-radius: 100px;
    overflow: hidden;
    background: var(--slate-soft);
    gap: 2px;
}
.ptui-page .ptui-seg {
    height: 100%;
}
.ptui-page .ptui-legend {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 10px;
    font-size: 12px;
    color: var(--ink-soft);
}
.ptui-page .ptui-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.ptui-page .ptui-legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

/* ==================================================================
 * Form treatment (.ptui-form) — the create-task demo's form system
 * mapped onto the existing Yii/Bootstrap markup. Geometry and focus
 * behaviour copied from the demo's .input/.select/.field rules.
 * ================================================================== */
.ptui-form label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}
.ptui-form .form-control,
.ptui-form select.form-control,
.ptui-form textarea.form-control {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
}
.ptui-form .form-control::placeholder {
    color: var(--ink-faint);
}
.ptui-form .form-control:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-soft);
    outline: none;
}
/* kartik Select2 pills match the inputs */
.ptui-form .select2-container--krajee .select2-selection {
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
}
.ptui-form .select2-container--krajee.select2-container--focus .select2-selection,
.ptui-form .select2-container--krajee.select2-container--open .select2-selection {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px var(--brand-soft);
}
.ptui-form .select2-container--krajee .select2-selection--multiple .select2-selection__choice {
    background: var(--brand-soft);
    color: var(--brand-dark);
    border: 0;
    border-radius: 100px;
    font-weight: 600;
}
.ptui-form .hint-block,
.ptui-form .help-block {
    font-size: 12px;
    color: var(--ink-faint);
}
.ptui-form .invalid-feedback {
    color: var(--red);
}
.ptui-form input[type="checkbox"],
.ptui-form input[type="radio"] {
    accent-color: var(--brand);
}
/* the ONE brand action: save */
.ptui-form .btn-primary,
.ptui-form button[type="submit"].btn {
    background: var(--brand);
    border-color: var(--brand);
    font-weight: 700;
    border-radius: var(--radius-sm);
    padding: 8px 22px;
    transition: background .15s ease;
}
.ptui-form .btn-primary:hover,
.ptui-form button[type="submit"].btn:hover {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
}
/* date/number inputs read with tabular digits (the .num rule) */
.ptui-form input.form-control {
    font-variant-numeric: tabular-nums;
}

/* focus ring per the skill's accessibility note */
.ptui-page a:focus-visible,
.ptui-page button:focus-visible {
    outline: 2px solid var(--brand);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    .ptui-page * { transition: none !important; }
}


/* --- toolbar action icons (tba) — shared by the TASK page toolbar and
 * (per Avi) the PROJECT page toolbar, so both carry the identical icon
 * set look: 32px hit area, hover wash, danger tint for delete. Moved
 * here from _view_status_menu.php's registerCss. --- */
.ptui-page .tba-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0 2px;
    border-radius: 6px;
    color: #4b5563;
    background: transparent;
    transition: background-color .12s ease, color .12s ease;
    text-decoration: none;
    line-height: 1;
}
.ptui-page .tba-icon:hover, .ptui-page .tba-icon:focus {
    background-color: #f1f5f9;
    color: #111827;
    text-decoration: none;
}
.ptui-page .tba-icon i { font-size: 14px; }
.ptui-page .tba-icon--danger:hover { background-color: #fee2e2; color: #b91c1c; }
.ptui-page .tba-divider {
    display: inline-block;
    width: 1px;
    height: 20px;
    background: #e5e7eb;
    margin: 0 8px;
    vertical-align: middle;
}

/* --- work-timer chip: the manual play/pause + elapsed counter lives in
 * the toolbar as a small bordered pill --- */
.ptui-page .ptui-timer-chip {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px 10px;
    border: 1px solid #E4E2EE;
    border-radius: 999px;
    background: #FAFAFD;
    white-space: nowrap;
}
.ptui-page .ptui-timer-chip i { font-size: 16px; }

/* --- smart-advance status button (option A): brand pill beside the
 * current-status pill on task + project pages --- */
.ptui-page .ptui-advance-btn {
    background: var(--brand);
    border: 0;
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    padding: 4px 14px;
    margin: 0 6px;
    white-space: nowrap;
    transition: background .15s ease;
}
.ptui-page .ptui-advance-btn:hover {
    background: var(--brand-dark);
    color: #fff;
}

/* --- "פרטי המשימה" card: three labeled sections (description, todos,
 * subtasks) separated by soft dividers, in Avi's reading order --- */
.ptui-page .ptui-task-sec {
    padding: 14px 0 18px;
    border-top: 1px solid #EEEDF4;
}
.ptui-page .ptui-task-sec:first-of-type {
    border-top: 0;
    padding-top: 4px;
}
.ptui-page .ptui-sec-title,
.ptui-page .ptui-task-sec .todo-form h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: #6B6880;
    margin: 0 0 8px;
    letter-spacing: .2px;
}

/* --- status split-button: main segment advances, the small caret
 * segment beside the text opens the full status list --- */
/* the theme's btn-group lays children LTR even on the RTL page —
 * reverse so the main segment sits right and the caret LEFT of the
 * text (Avi), on task and project pages alike */
.ptui-page .ptui-advance-group {
    vertical-align: middle;
    flex-direction: row-reverse;
}
.ptui-page .ptui-advance-group .ptui-advance-btn { margin: 0; }
.ptui-page .ptui-advance-caret {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, .45); /* seam between segments (RTL) */
}
.ptui-page .ptui-advance-caret i {
    font-size: 16px;
    line-height: 1;
    color: #fff;
}
/* selectors carry .btn-group too — the generic
 * ".ptui-page .btn-group .btn" pill rule above would win otherwise.
 * RTL: the FIRST child renders on the right (the main segment), the
 * caret on the left. */
.ptui-page .btn-group.ptui-advance-group > .btn { border-radius: 0; }
.ptui-page .btn-group.ptui-advance-group > .btn:first-child {
    border-radius: 0 999px 999px 0;
}
.ptui-page .btn-group.ptui-advance-group > .ptui-advance-caret {
    border-radius: 999px 0 0 999px;
}
.ptui-page .btn-group.ptui-advance-group > .btn:only-child {
    border-radius: 999px;
}
/* seam between every pair of segments (row-reverse: the shared edge
 * is each non-first segment's RIGHT side) */
.ptui-page .btn-group.ptui-advance-group > .btn:not(:first-child) {
    border-right: 1px solid rgba(255, 255, 255, .45);
}
/* the current-status segment is a label, not a button */
.ptui-page .ptui-status-now {
    cursor: default;
}
/* task page: the status group hugged the task name — match the
 * project page's breathing room (extra space on the group's left,
 * where the title sits in RTL) */
.ptui-page #task_title_pjax {
    margin-left: 10px;
}
/* segments carry the status color INLINE, which beats the CSS hover —
 * darken via filter so clickable segments still respond */
.ptui-page .ptui-advance-group a.btn:hover,
.ptui-page .ptui-advance-group button.btn:hover {
    filter: brightness(.9);
}
/* RTL: the status list drops LEFTWARD from the CARET — its right edge
 * sits under the caret segment (the group's left end), so the box
 * opens away from the control, never off-page */
.ptui-page .ptui-advance-group .dropdown-menu {
    right: calc(100% - 36px) !important;
    left: auto !important;
}

/* the status list itself: redesign-language white card — one row per
 * status, solid color dot + dark name, hover wash (replaces the
 * stacked tinted color bars) */
.ptui-page .ptui-status-menu {
    border: 1px solid #E4E2EE;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(30, 26, 59, .14);
    padding: 6px;
    min-width: 190px;
    /* force true RTL inside the box: dot first ON THE RIGHT, then the
     * name, everything packed to the right edge */
    direction: rtl;
    text-align: right;
}
.ptui-page .ptui-status-menu .dropdown-item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    text-align: right;
    align-items: center;
    gap: 9px;
    padding: 8px 12px;
    border-radius: 9px;
    color: #1E1A3B;
    font-weight: 600;
    font-size: 13.5px;
    transition: background .12s ease;
}
.ptui-page .ptui-status-menu .dropdown-item:hover {
    background: #F1F2F8;
    color: #1E1A3B;
}
.ptui-page .ptui-status-menu .ptui-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}

/* generic pill button — the priority control (and the closed-status
 * segment) share the advance button's shape, keeping their own colors */
.ptui-page .ptui-pill-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 0;
    font-weight: 700;
    font-size: 12.5px;
    border-radius: 999px;
    padding: 4px 14px;
    white-space: nowrap;
    vertical-align: middle;
}

/* running timer chip (idle state is a plain .tba-icon play button) */
.ptui-page .ptui-timer-on {
    color: var(--brand);
    border-color: #F3C2D2;
    background: #FCE6ED66;
}
/* never-used timer: same 32px box as the rest of the icon row, with a
 * clearly readable play glyph */
.ptui-page .tba-icon.ptui-timer-play i {
    font-size: 19px;
}

/* subtask expander in task tables: sit ON the text line (the float
 * pulled it off the name's baseline) */
.ptui-page .ptui-subtask-toggle {
    float: none !important;
    display: inline-block;
    vertical-align: middle;
    margin: 0 4px;
    font-size: 15px;
    line-height: 1;
}

/* --- task-details tabs: description / todos / subtasks side by side,
 * underline style, count badge on each --- */
.ptui-page .ptui-detail-tabs {
    display: flex;
    gap: 2px;
    border-bottom: 1px solid #EEEDF4;
    flex-wrap: wrap;
}
.ptui-page .ptui-detail-tabs .nav-link {
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    padding: 8px 14px;
    font-weight: 700;
    font-size: 13.5px;
    color: #6B6880;
    background: transparent;
}
.ptui-page .ptui-detail-tabs .nav-link.active {
    color: var(--brand);
    border-bottom-color: var(--brand);
    background: transparent;
}
.ptui-page .ptui-tab-count {
    font-weight: 600;
    font-size: 12px;
    opacity: .75;
}
/* the todos partial carries its own h4 heading — the tab already
 * names the section, so hide the duplicate inside the pane */
.ptui-page .ptui-detail-tabcontent .todo-form > h4 {
    display: none;
}

/* --- subtasks tab: chronological flat list — dot, name, status pill,
 * dates; one bordered row per subtask --- */
.ptui-page .ptui-subtask-list {
    display: flex;
    flex-direction: column;
}
.ptui-page .ptui-subtask-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 6px;
    border-bottom: 1px solid #EEEDF4;
    color: #1E1A3B;
    text-decoration: none;
    border-radius: 6px;
    transition: background .12s ease;
}
.ptui-page .ptui-subtask-row:last-child { border-bottom: 0; }
.ptui-page .ptui-subtask-row:hover {
    background: #F7F7FB;
    color: #1E1A3B;
    text-decoration: none;
}
.ptui-page .ptui-subtask-row .ptui-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
}
.ptui-page .ptui-st-name {
    font-weight: 600;
    flex: 1 1 auto;
    min-width: 0;
}
.ptui-page .ptui-st-status {
    border-radius: 999px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}
.ptui-page .ptui-st-date {
    color: #6B6880;
    font-size: 12.5px;
    white-space: nowrap;
}

/* ===== mobile: project/task header toolbar = ONE scrollable row =====
 * 14 action icons wrapped into three rows on phones and pushed the
 * content down; now they sit in a single swipeable strip (Avi). */
@media (max-width: 767.98px) {
    .ptui-page .ptui-proj-top { flex-direction: column; align-items: stretch; gap: 10px; }
    .ptui-page .ptui-proj-toolbar {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 2px;
        max-width: 100%;
    }
    .ptui-page .ptui-proj-toolbar::-webkit-scrollbar { display: none; }
    .ptui-page .ptui-proj-toolbar > a,
    .ptui-page .ptui-proj-toolbar > div.d-inline,
    .ptui-page .ptui-proj-toolbar .tba-icon,
    .ptui-page .ptui-proj-toolbar .tba-divider { flex: 0 0 auto; }
}

/* ===== payment pages (checkout summary + thank-you) ===== */
.ptui-page .ptui-pay-card { border-radius: var(--radius-lg); }
.ptui-page .ptui-pay-head { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.ptui-page .ptui-pay-lock { width: 46px; height: 46px; border-radius: 12px; background: var(--brand-soft); color: var(--brand-dark); display: inline-flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.ptui-page .ptui-pay-title { font-size: 22px; font-weight: 800; margin: 0 0 4px; color: var(--ink); }
.ptui-page .ptui-pay-sub { color: var(--ink-soft); font-size: 14px; line-height: 1.6; }
.ptui-page .ptui-pay-summary { background: var(--bg); border: 1px solid var(--border-soft); border-radius: var(--radius-md); padding: 6px 16px; margin-bottom: 18px; }
.ptui-page .ptui-pay-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border-soft); }
.ptui-page .ptui-pay-row:last-child { border-bottom: 0; }
.ptui-page .ptui-pay-label { color: var(--ink-soft); font-weight: 600; font-size: 13.5px; }
.ptui-page .ptui-pay-val { font-weight: 700; color: var(--ink); text-align: left; }
.ptui-page .ptui-pay-total { border-top: 2px solid var(--border); margin-top: 4px; padding-top: 12px; }
.ptui-page .ptui-pay-total .ptui-pay-val { font-size: 20px; color: var(--brand-dark); }
.ptui-page .ptui-pay-points { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 6px; color: var(--ink); font-weight: 600; font-size: 14px; }
.ptui-page .ptui-pay-points i { color: var(--brand); margin-inline-end: 6px; }
.ptui-page .ptui-pay-btn { background: var(--brand) !important; border: 0 !important; border-radius: var(--radius-md); font-weight: 700; padding: 12px 26px; }
.ptui-page .ptui-pay-btn:hover { background: var(--brand-dark) !important; }
.ptui-page .ptui-pay-foot { color: var(--ink-faint); font-size: 12.5px; text-align: center; margin: 12px 0 0; }
.ptui-page .ptui-pay-ref { color: var(--ink-faint); font-size: 12.5px; margin: 14px 0 0; }
.ptui-page .ptui-pay-spinner { width: 56px; height: 56px; border-radius: 50%; border: 5px solid var(--brand-soft); border-top-color: var(--brand); margin: 0 auto; animation: ptui-spin 1s linear infinite; }
@keyframes ptui-spin { to { transform: rotate(360deg); } }
.ptui-page .ptui-pay-check { width: 64px; height: 64px; border-radius: 50%; background: #E3F5EC; color: #1D9A63; font-size: 36px; display: inline-flex; align-items: center; justify-content: center; }

/* ===== packages page: the landing's single-plan card, in-app ===== */
.ptui-page .ptui-plan-card {
    background: var(--surface);
    border: 3px solid var(--brand);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem 2.25rem;
    text-align: center;
    position: relative;
    max-width: 440px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(226, 38, 90, .16), 0 0 0 8px rgba(226, 38, 90, .05);
}
.ptui-page .ptui-plan-card .ptui-pricing-badge {
    position: absolute; top: -22px; left: 50%; transform: translateX(-50%); margin: 0; white-space: nowrap;
}
.ptui-page .ptui-pricing-badge {
    display: inline-block; background: linear-gradient(135deg, #E61E68 0%, #FF5E3A 100%);
    color: #fff; padding: 0.55rem 1.6rem; border-radius: 50px; font-weight: 700;
    box-shadow: 0 6px 16px rgba(226, 38, 90, .3);
}
.ptui-page .ptui-pricing-note {
    background: rgba(226, 38, 90, 0.06); border-radius: var(--radius-sm); padding: 1rem 1.5rem;
    color: var(--brand-dark); font-weight: 700;
}

/* ============ Dashboard snapshot strip (morning "what matters" view) ============
   Color meaning is consistent: red = action needed, orange = risk,
   blue = information, green = healthy, gray = secondary. */
.ptui-page .ptui-snap { margin-bottom: 8px; }
.ptui-page .ptui-snap-cards {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 18px;
}
.ptui-page .ptui-snap-card {
    background: #fff; border-radius: 14px; padding: 16px 18px; display: flex;
    flex-direction: column; gap: 4px; border: 1px solid #E6E7F1;
    text-decoration: none !important; transition: transform .12s ease, box-shadow .12s ease;
}
.ptui-page .ptui-snap-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(30,26,59,.08); }
.ptui-page .ptui-snap-card__num { font-size: 30px; font-weight: 800; line-height: 1; color: #181425; }
.ptui-page .ptui-snap-card__label { font-size: 13px; font-weight: 600; color: #5C5872; }
.ptui-page .ptui-snap-card__label .mdi { font-size: 15px; }
.ptui-page .ptui-snap-card--red .ptui-snap-card__num, .ptui-page .ptui-snap-card--red .mdi { color: #D92D20; }
.ptui-page .ptui-snap-card--orange .ptui-snap-card__num, .ptui-page .ptui-snap-card--orange .mdi { color: #DC6803; }
.ptui-page .ptui-snap-card--blue .ptui-snap-card__num, .ptui-page .ptui-snap-card--blue .mdi { color: #2E5AAC; }
.ptui-page .ptui-snap-card--green .ptui-snap-card__num, .ptui-page .ptui-snap-card--green .mdi { color: #12805C; }

.ptui-page .ptui-snap-box {
    background: #fff; border: 1px solid #E6E7F1; border-radius: 14px;
    padding: 16px 18px; margin-bottom: 16px; flex: 1 1 auto;
}
.ptui-page .ptui-snap-box__title { font-size: 15px; font-weight: 800; color: #181425; margin: 0 0 12px; }

.ptui-page .ptui-snap-empty {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 22px 0; text-align: center; font-size: 14px;
}
.ptui-page .ptui-snap-empty__icon { font-size: 26px; line-height: 1; }

.ptui-page .ptui-snap-alert {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px;
    border-radius: 10px; margin-bottom: 8px; background: #FAFAFD;
    border: 1px solid #EFEFF6; text-decoration: none !important; color: inherit;
    transition: background .12s ease;
}
.ptui-page .ptui-snap-alert:hover { background: #F1F2F8; }
.ptui-page .ptui-snap-alert__dot { width: 9px; height: 9px; border-radius: 50%; flex: 0 0 auto; }
.ptui-page .ptui-snap-alert--red .ptui-snap-alert__dot { background: #D92D20; }
.ptui-page .ptui-snap-alert--orange .ptui-snap-alert__dot { background: #DC6803; }
.ptui-page .ptui-snap-alert--blue .ptui-snap-alert__dot { background: #2E5AAC; }
.ptui-page .ptui-snap-alert__body { display: flex; flex-direction: column; min-width: 0; flex: 1 1 auto; }
.ptui-page .ptui-snap-alert__body strong { font-size: 14px; color: #181425; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ptui-page .ptui-snap-alert__cta {
    flex: 0 0 auto; font-size: 12px; font-weight: 700; color: #B71046;
    border: 1px solid #F3D2DD; border-radius: 9px; padding: 4px 10px; white-space: nowrap;
}
.ptui-page .ptui-snap-alert:hover .ptui-snap-alert__cta { background: #B71046; color: #fff; }
.ptui-page .ptui-snap-more { display: inline-block; margin-top: 4px; font-size: 13px; font-weight: 700; color: #B71046 !important; }

.ptui-page .ptui-snap-proj {
    display: flex; flex-direction: column; gap: 5px; padding: 10px 2px 12px;
    border-bottom: 1px solid #F1F2F8; text-decoration: none !important; color: inherit;
}
.ptui-page .ptui-snap-proj:last-of-type { border-bottom: none; }
.ptui-page .ptui-snap-proj__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ptui-page .ptui-snap-proj__head strong { font-size: 14px; color: #181425; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ptui-page .ptui-snap-proj:hover .ptui-snap-proj__head strong { color: #B71046; }
.ptui-page .ptui-snap-pill {
    flex: 0 0 auto; font-size: 11px; font-weight: 700; border-radius: 20px; padding: 3px 10px;
}
.ptui-page .ptui-snap-pill--red { background: #FEE4E2; color: #B42318; }
.ptui-page .ptui-snap-pill--orange { background: #FEF0C7; color: #B54708; }
.ptui-page .ptui-snap-pill--green { background: #D9F2E5; color: #12805C; }
.ptui-page .ptui-snap-pill--gray { background: #EFEFF6; color: #5C5872; }
.ptui-page .ptui-snap-proj__bar { position: relative; height: 7px; border-radius: 6px; background: #EFEFF6; overflow: visible; display: block; }
.ptui-page .ptui-snap-proj__fill { position: absolute; top: 0; bottom: 0; border-radius: 6px; background: #12805C; }
html[dir="rtl"] .ptui-page .ptui-snap-proj__fill { right: 0; } html[dir="ltr"] .ptui-page .ptui-snap-proj__fill { left: 0; }
.ptui-page .ptui-snap-proj__fill--red { background: #D92D20; }
.ptui-page .ptui-snap-proj__fill--orange { background: #DC6803; }
.ptui-page .ptui-snap-proj__expected {
    position: absolute; top: -3px; bottom: -3px; width: 2px; background: #1E1A3B; opacity: .55; border-radius: 2px;
}
.ptui-page .ptui-snap-proj__meta { display: flex; justify-content: space-between; gap: 8px; }
.ptui-page .ptui-snap-meta-red { color: #D92D20; font-weight: 700; }
.ptui-page .ptui-snap-meta-orange { color: #DC6803; font-weight: 700; }

.ptui-page .ptui-snap-table { width: 100%; font-size: 13px; }
.ptui-page .ptui-snap-table th { font-weight: 600; color: #9996AA; font-size: 12px; padding: 4px 6px; }
.ptui-page .ptui-snap-table td { padding: 7px 6px; border-top: 1px solid #F1F2F8; color: #181425; }
.ptui-page .ptui-snap-table__load { width: 34%; }
.ptui-page .ptui-snap-load { display: block; height: 6px; border-radius: 6px; background: #EFEFF6; position: relative; }
.ptui-page .ptui-snap-load__fill { position: absolute; top: 0; bottom: 0; border-radius: 6px; background: #2E5AAC; }
html[dir="rtl"] .ptui-page .ptui-snap-load__fill { right: 0; } html[dir="ltr"] .ptui-page .ptui-snap-load__fill { left: 0; }
.ptui-page .ptui-snap-load__fill--red { background: #D92D20; }

.ptui-page .ptui-snap-insights { list-style: none; margin: 0; padding: 0; }
.ptui-page .ptui-snap-insights li {
    display: flex; gap: 8px; align-items: baseline; font-size: 13.5px; color: #37334A;
    padding: 7px 0; border-bottom: 1px solid #F1F2F8;
}
.ptui-page .ptui-snap-insights li:last-child { border-bottom: none; }
.ptui-page .ptui-snap-insights .mdi { color: #DC6803; flex: 0 0 auto; }

.ptui-page .ptui-snap-days { display: flex; gap: 8px; align-items: stretch; }
.ptui-page .ptui-snap-day {
    flex: 1 1 0; display: flex; flex-direction: column; align-items: center; gap: 3px;
    text-decoration: none !important; color: inherit;
}
.ptui-page .ptui-snap-day__bar {
    width: 100%; height: 54px; border-radius: 8px; background: #F1F2F8;
    position: relative; overflow: hidden; display: block;
}
.ptui-page .ptui-snap-day__fill {
    position: absolute; bottom: 0; left: 0; right: 0; background: #C8CBE8; border-radius: 8px 8px 0 0;
    transition: background .12s ease;
}
.ptui-page .ptui-snap-day:hover .ptui-snap-day__fill { background: #B71046; }
.ptui-page .ptui-snap-day__fill--hot { background: #F0A9BF; }
.ptui-page .ptui-snap-day__num { font-size: 13px; font-weight: 800; color: #181425; }
.ptui-page .ptui-snap-day__date { font-size: 11px; color: #9996AA; white-space: nowrap; }
.ptui-page .ptui-snap-day__date--deadline { color: #B71046; font-weight: 700; }

@media (max-width: 991px) {
    .ptui-page .ptui-snap-cards { grid-template-columns: repeat(2, 1fr); }
    .ptui-page .ptui-snap-card__num { font-size: 24px; }
}

/* demo-mode banner + risk-card scroll flash */
.ptui-page .ptui-snap-demo-banner {
    display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
    background: #FFF6E6; border: 1px solid #F5DFB8; color: #8A5A00;
    border-radius: 12px; padding: 10px 16px; font-size: 13.5px; font-weight: 600;
}
.ptui-page .ptui-snap-demo-banner .mdi { font-size: 17px; }
.ptui-page .ptui-snap-flash {
    box-shadow: 0 0 0 3px rgba(220, 104, 3, .45) !important;
    transition: box-shadow .3s ease;
}
.ptui-page .ptui-snap a[href="javascript:void(0)"] { cursor: default; }
