/* Sidebar, global loader, page motion */
.petra-logo-link {
    text-decoration: none;
    color: inherit;
}

.petra-shell.petra-home {
    --petra-sidebar-width: min(20rem, 92vw);
}

.petra-loader {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 120% 80% at 50% 0%, rgba(56, 189, 248, 0.14), transparent 55%),
        radial-gradient(ellipse 100% 60% at 80% 100%, rgba(192, 132, 252, 0.12), transparent 50%),
        linear-gradient(
            168deg,
            rgba(15, 23, 42, 0.72) 0%,
            rgba(30, 27, 75, 0.55) 38%,
            rgba(30, 58, 138, 0.42) 68%,
            rgba(248, 250, 252, 0.2) 100%
        );
    backdrop-filter: blur(18px) saturate(1.15);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s ease;
}

.petra-loader::before {
    content: '';
    position: absolute;
    inset: -25%;
    background:
        radial-gradient(circle at 25% 35%, rgba(34, 211, 238, 0.12), transparent 42%),
        radial-gradient(circle at 75% 65%, rgba(167, 139, 250, 0.14), transparent 48%);
    animation: petra-loader-aurora 9s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes petra-loader-aurora {
    0% {
        transform: translate(-2%, 1%) scale(1);
        opacity: 0.75;
    }

    100% {
        transform: translate(3%, -2%) scale(1.08);
        opacity: 1;
    }
}

body.petra-nav-loading .petra-loader {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Top indeterminate bar */
.petra-loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 2;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.2), rgba(248, 250, 252, 0.08), rgba(15, 23, 42, 0.2));
}

.petra-loader-progress__indeterminate {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: min(42%, 18rem);
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(125, 211, 252, 0.15) 15%,
        #7dd3fc 38%,
        #a5b4fc 52%,
        #e879f9 68%,
        rgba(248, 250, 252, 0.85) 85%,
        transparent 100%
    );
    background-size: 200% 100%;
    box-shadow:
        0 0 16px rgba(56, 189, 248, 0.55),
        0 0 28px rgba(129, 140, 248, 0.35);
    border-radius: 0 2px 2px 0;
    animation: petra-loader-progress-sweep 1.05s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes petra-loader-progress-sweep {
    0% {
        transform: translate3d(-110%, 0, 0);
        opacity: 0.85;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translate3d(320%, 0, 0);
        opacity: 0.85;
    }
}

.petra-loader-label {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #f1f5f9;
    text-shadow:
        0 0 20px rgba(56, 189, 248, 0.35),
        0 1px 2px rgba(15, 23, 42, 0.5);
}

/* Hero SVG: orbits + honeycomb */
.petra-loader-stage {
    position: relative;
    z-index: 1;
    width: min(13.5rem, 48vw);
    height: min(13.5rem, 48vw);
    filter: drop-shadow(0 8px 32px rgba(30, 27, 75, 0.45));
}

.petra-loader-hero {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
    animation: petra-loader-hero-breathe 2.8s ease-in-out infinite;
}

.petra-loader-hero .pl-field {
    animation: petra-loader-field-pulse 3.2s ease-in-out infinite;
}

@keyframes petra-loader-hero-breathe {
    0%,
    100% {
        filter: brightness(0.97) saturate(1.02);
    }

    50% {
        filter: brightness(1.06) saturate(1.12);
    }
}

@keyframes petra-loader-field-pulse {
    0%,
    100% {
        opacity: 0.72;
        transform: scale(1);
    }

    50% {
        opacity: 0.95;
        transform: scale(1.02);
    }
}

.petra-loader-hero .pl-orbit {
    transform-origin: 0 0;
    transform-box: fill-box;
}

.petra-loader-hero .pl-orbit--outer {
    animation: petra-loader-orbit-cw 2.65s linear infinite;
}

.petra-loader-hero .pl-orbit--mid {
    animation: petra-loader-orbit-ccw 3.45s linear infinite;
}

.petra-loader-hero .pl-orbit--inner {
    animation: petra-loader-orbit-cw 5.2s linear infinite;
}

@keyframes petra-loader-orbit-cw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes petra-loader-orbit-ccw {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.petra-loader-hero .pl-honey-root {
    animation: petra-loader-honey-glow 2.6s ease-in-out infinite;
}

@keyframes petra-loader-honey-glow {
    0%,
    100% {
        filter: drop-shadow(0 0 6px rgba(56, 189, 248, 0.25));
    }

    50% {
        filter: drop-shadow(0 0 14px rgba(129, 140, 248, 0.45));
    }
}

.petra-loader-hero .petra-honeycomb-cells {
    animation: petra-loader-stroke-shimmer 3.2s ease-in-out infinite;
}

.petra-loader-hero .petra-honeycomb-cells .petra-hex {
    animation:
        petra-loader-hex-shimmer 2.8s ease-in-out infinite,
        petra-loader-hex-pulse 1.8s ease-in-out infinite;
}

.petra-loader-hero .petra-honeycomb-cells .petra-hex-wrap--1 .petra-hex {
    animation-delay: -0.35s;
}

.petra-loader-hero .petra-honeycomb-cells .petra-hex-wrap--2 .petra-hex {
    animation-delay: -0.7s;
}

.petra-loader-hero .petra-honeycomb-cells .petra-hex-wrap--3 .petra-hex {
    animation-delay: -1.05s;
}

.petra-loader-hero .petra-honeycomb-cells .petra-hex-wrap--4 .petra-hex {
    animation-delay: -1.4s;
}

.petra-loader-hero .petra-honeycomb-cells .petra-hex-wrap--5 .petra-hex {
    animation-delay: -1.75s;
}

.petra-loader-hero .petra-honeycomb-cells .petra-hex-wrap--6 .petra-hex {
    animation-delay: -2.1s;
}

@keyframes petra-loader-stroke-shimmer {
    0%,
    100% {
        opacity: 0.92;
    }

    50% {
        opacity: 1;
    }
}

@keyframes petra-loader-hex-shimmer {
    0%,
    100% {
        opacity: 0.85;
    }

    50% {
        opacity: 1;
    }
}

@keyframes petra-loader-hex-pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.07);
    }
}

@media (prefers-reduced-motion: reduce) {
    .petra-loader::before {
        animation: none;
        opacity: 0.5;
    }

    .petra-loader-progress__indeterminate {
        animation: none;
        width: 100%;
        transform: none;
        opacity: 0.55;
    }

    .petra-loader-hero {
        animation: none;
    }

    .petra-loader-hero .pl-field {
        animation: none;
        opacity: 0.85;
    }

    .petra-loader-hero .pl-orbit--outer,
    .petra-loader-hero .pl-orbit--mid,
    .petra-loader-hero .pl-orbit--inner {
        animation: none;
    }

    .petra-loader-hero .pl-honey-root {
        animation: none;
        filter: drop-shadow(0 2px 10px rgba(15, 23, 42, 0.35));
    }

    .petra-loader-hero .petra-honeycomb-cells,
    .petra-loader-hero .petra-honeycomb-cells .petra-hex {
        animation: none;
        opacity: 1;
    }
}

.petra-sidebar-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9996;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

body.petra-sidebar-open .petra-sidebar-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.petra-sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9997;
    width: var(--petra-sidebar-width);
    max-width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 8px 0 32px rgba(30, 58, 138, 0.18);
    transform: translateX(-100%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* LTR: drawer opens from the left edge */
html[dir='ltr'] .petra-sidebar {
    left: 0;
    right: auto;
    transform: translateX(-100%);
}

/* RTL: drawer opens from the right edge (reading-start side) */
html[dir='rtl'] .petra-sidebar {
    right: 0;
    left: auto;
    transform: translateX(100%);
    box-shadow: -8px 0 32px rgba(30, 58, 138, 0.18);
}

body.petra-sidebar-open .petra-sidebar {
    transform: translateX(0);
}

.petra-sidebar-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1rem 1rem 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.petra-sidebar-user {
    flex: 1;
    min-width: 0;
}

.petra-sidebar-name {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

.petra-sidebar-email {
    margin: 0.2rem 0 0;
    font-size: 0.78rem;
    color: #64748b;
    word-break: break-all;
}

.petra-sidebar-tokens {
    margin-top: 0.65rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e40af;
}

.petra-sidebar-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 0.75rem 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.petra-sidebar-section-title {
    margin: 0 0 0.35rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.petra-sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.petra-sidebar-nav--legal {
    gap: 0.15rem;
}

.petra-sidebar-legal {
    margin-top: 0.25rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(148, 163, 184, 0.35);
}

.petra-sidebar-legal .petra-sidebar-section-title {
    margin-bottom: 0.45rem;
}

.petra-sidebar-link--legal {
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.35rem 0.55rem;
    color: #475569;
}

.petra-sidebar-link--legal:hover {
    background: rgba(51, 65, 85, 0.06);
}

.petra-sidebar-logout-box {
    margin-top: auto;
    padding-top: 1rem;
}

.petra-sidebar-logout-form {
    margin: 0;
}

.petra-sidebar-logout-btn {
    width: 100%;
    border: 1px solid rgba(248, 113, 113, 0.55);
    border-radius: 0.65rem;
    padding: 0.55rem 0.75rem;
    background: rgba(254, 226, 226, 0.85);
    color: #991b1b;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.petra-sidebar-logout-btn:hover {
    background: rgba(254, 202, 202, 0.95);
}

.petra-sidebar-logout-btn:active {
    transform: scale(0.98);
}

.petra-sidebar-link {
    display: block;
    padding: 0.55rem 0.65rem;
    border-radius: 0.65rem;
    color: #1e3a8a;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.petra-sidebar-link:hover {
    background: rgba(37, 99, 235, 0.08);
}

.petra-sidebar-link:active {
    transform: scale(0.98);
}

.petra-sidebar-link--cta {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.2), rgba(253, 224, 71, 0.12));
    border: 1px solid rgba(202, 138, 4, 0.35);
    color: #854d0e;
}

.petra-sidebar-link--cta:hover {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.32), rgba(253, 224, 71, 0.2));
}

.petra-sidebar-fav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    max-height: 11rem;
    overflow-y: auto;
}

.petra-sidebar-fav-list a {
    font-size: 0.82rem;
    padding: 0.35rem 0.45rem;
    border-radius: 0.45rem;
    color: #334155;
    text-decoration: none;
    display: block;
}

.petra-sidebar-fav-list a:hover {
    background: #f1f5f9;
}

.petra-main-animate {
    animation: petra-main-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes petra-main-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html[dir='rtl'] .petra-home {
    font-family: 'Noto Sans Arabic', 'Inter', system-ui, sans-serif;
}

.petra-brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(8.5rem, 1fr));
    gap: 0.85rem;
}

.petra-brand-card {
    background: #fff;
    border-radius: 1rem;
    padding: 0.75rem;
    border: 2px solid #bfdbfe;
    text-align: center;
    box-shadow: 0 4px 14px rgba(30, 64, 175, 0.06);
}

.petra-brand-card img {
    width: 100%;
    height: 5rem;
    object-fit: contain;
    border-radius: 0.5rem;
    background: #f8fafc;
}

.petra-brand-card span {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: #1e3a8a;
}

.petra-calc-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.petra-calc-section {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem;
    border: 2px solid #93c5fd;
}

.petra-calc-section h2 {
    margin: 0 0 0.65rem;
    font-size: 0.95rem;
    color: #1e40af;
}

.petra-calc-grid {
    display: grid;
    gap: 0.65rem;
}

@media (min-width: 640px) {
    .petra-calc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.petra-calc-field label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 0.25rem;
}

.petra-calc-field input,
.petra-calc-field select {
    width: 100%;
    border-radius: 0.65rem;
    border: 1px solid #cbd5e1;
    padding: 0.45rem 0.55rem;
    font: inherit;
    box-sizing: border-box;
}

.petra-calc-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.petra-calc-result-wrap {
    margin: 0 0 1.15rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.08), rgba(248, 250, 252, 0.96));
    border: 2px solid rgba(37, 99, 235, 0.38);
    text-align: center;
    transition: opacity 0.15s ease;
}

.petra-calc-result-wrap.is-updating {
    opacity: 0.72;
}

.petra-calc-result-kicker {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.35rem;
}

.petra-calc-result {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0.5rem 0 0;
}

.petra-calc-result--hero {
    font-size: clamp(1.45rem, 4.2vw, 2.2rem);
    margin: 0;
    line-height: 1.2;
    word-break: break-word;
}

.petra-cart-lot {
    background: #fff;
    border-radius: 1.1rem;
    margin-bottom: 1rem;
    border: 2px solid #93c5fd;
    overflow: hidden;
}

.petra-cart-lot-head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: linear-gradient(90deg, #eff6ff, #fff);
}

.petra-cart-lot-head h2 {
    margin: 0;
    font-size: 1rem;
    color: #1e3a8a;
}

.petra-cart-table-wrap {
    overflow-x: auto;
}

.petra-cart-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
}

.petra-cart-table th,
.petra-cart-table td {
    padding: 0.45rem 0.55rem;
    text-align: start;
    border-bottom: 1px solid #e2e8f0;
}

.petra-cart-table th {
    background: #f8fafc;
    font-weight: 700;
    color: #475569;
}

.petra-cart-totals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(7rem, 1fr));
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    font-size: 0.82rem;
}

.petra-cart-totals strong {
    display: block;
    color: #64748b;
    font-size: 0.72rem;
}

.petra-pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.85rem;
    border-radius: 0.75rem;
    border: none;
    background: #1d4ed8;
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
}

.petra-cart-lot-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
}

.petra-cart-lot-card {
    display: block;
    background: #fff;
    border-radius: 1rem;
    border: 2px solid #93c5fd;
    padding: 1rem 1.1rem;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.petra-cart-lot-card:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12);
}

.petra-cart-lot-card__title {
    margin: 0 0 0.65rem;
    font-size: 1rem;
    font-weight: 800;
    color: #1e3a8a;
}

.petra-cart-lot-card__stats {
    margin: 0;
    display: grid;
    gap: 0.45rem;
}

.petra-cart-lot-card__stats dt {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 600;
    color: #64748b;
}

.petra-cart-lot-card__stats dd {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
}

.petra-legal {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem 1.1rem;
    border: 2px solid #bfdbfe;
}

.petra-legal h1 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    color: #1e3a8a;
}

.petra-legal p {
    margin: 0 0 0.65rem;
    line-height: 1.55;
    color: #334155;
    font-size: 0.9rem;
}

/* FCM opt-in modal */
.petra-fcm-modal {
    position: fixed;
    inset: 0;
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    box-sizing: border-box;
}

.petra-fcm-modal[hidden] {
    display: none !important;
}

.petra-fcm-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
}

.petra-fcm-modal__card {
    position: relative;
    max-width: 22rem;
    width: 100%;
    background: #fff;
    border-radius: 1rem;
    padding: 1.35rem 1.25rem;
    box-shadow: 0 16px 48px rgba(30, 64, 175, 0.2);
    border: 2px solid #bfdbfe;
}

.petra-fcm-modal__title {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a8a;
}

.petra-fcm-modal__body {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #475569;
}

.petra-fcm-modal__actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.petra-fcm-modal__btn {
    border: none;
    border-radius: 0.5rem;
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

.petra-fcm-modal__btn--secondary {
    background: #f1f5f9;
    color: #334155;
}

.petra-fcm-modal__btn--primary {
    background: #1d4ed8;
    color: #fff;
}

.petra-header-spacer {
    width: 2.5rem;
    height: 2.5rem;
    flex-shrink: 0;
}

/* Notifications drawer (auth) */
.petra-notify-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9994;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

body.petra-notify-open .petra-notify-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.petra-notify-panel {
    --petra-notify-width: min(20rem, 92vw);
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 9995;
    width: var(--petra-notify-width);
    max-width: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    box-shadow: -8px 0 28px rgba(15, 23, 42, 0.2);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

html[dir='ltr'] .petra-notify-panel {
    right: 0;
}

html[dir='rtl'] .petra-notify-panel {
    left: 0;
    transform: translateX(-100%);
    box-shadow: 8px 0 28px rgba(15, 23, 42, 0.2);
}

body.petra-notify-open .petra-notify-panel {
    transform: translateX(0);
}

.petra-notify-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    background: rgba(255, 255, 255, 0.9);
}

.petra-notify-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.petra-notify-close {
    border: none;
    background: #f1f5f9;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.5rem;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
    color: #475569;
}

.petra-notify-empty {
    margin: 0;
    padding: 1.25rem 1rem;
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
}

.petra-notify-list {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0 1rem;
    overflow-y: auto;
    flex: 1;
}

.petra-notify-item {
    margin: 0 0.65rem 0.5rem;
    padding: 0.75rem 0.85rem;
    border-radius: 0.75rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    text-align: start;
    font: inherit;
    width: calc(100% - 1.3rem);
    box-sizing: border-box;
}

.petra-notify-item--unread {
    border-color: #93c5fd;
    background: #eff6ff;
}

.petra-notify-item__title {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.petra-notify-item__body {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.35;
}

.petra-notify-item__time {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.72rem;
    color: #94a3b8;
}
