.ptt-page .ptt-hero svg.fill-primary\/30 {
    fill: hsl(var(--primary) / 0.3);
}

.ptt-section + .ptt-section {
    border-top: 0;
}

.ptt-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-bottom: 1px solid hsl(var(--border));
    padding-bottom: 0;
}

.ptt-tab {
    appearance: none;
    border: none;
    background: transparent;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: hsl(var(--muted-foreground));
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
}

.ptt-tab:hover,
.ptt-tab.active {
    color: hsl(var(--primary));
}

.ptt-tab.active {
    border-bottom-color: hsl(var(--primary));
}

.ptt-panel {
    display: none;
    padding-top: 1.5rem;
}

.ptt-panel.active {
    display: block;
}

.ptt-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.ptt-modal.hidden {
    display: none;
}

.ptt-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.ptt-modal-dialog {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 32rem;
    max-height: 90vh;
    overflow-y: auto;
    background: hsl(var(--card));
    border: 1px solid hsl(var(--border));
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.ptt-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 2rem;
    height: 2rem;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    color: hsl(var(--muted-foreground));
    cursor: pointer;
}

.ptt-modal-close:hover {
    color: hsl(var(--foreground));
}
