/* ==========================================================================
   BatesStamp.com — Site-Specific Stylesheet
   Imports shared brand tokens, layout, and components from brand.css
   ========================================================================== */

/* ==========================================================================
   Utility classes
   ========================================================================== */

.hidden { display: none; }

.option-panel { margin-top: 15px; }

/* ==========================================================================
   Opacity control (stamp settings)
   ========================================================================== */

.opacity-control {
    display: flex;
    align-items: center;
    gap: 12px;
}

.opacity-control input[type="range"] {
    flex: 1;
    accent-color: var(--navy-mid);
}

.opacity-control span {
    min-width: 45px;
    font-weight: 600;
    color: var(--navy);
    font-variant-numeric: tabular-nums;
}

/* ==========================================================================
   File upload drop zone
   ========================================================================== */

.file-drop-zone {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--white);
    position: relative;
}

.file-drop-zone:hover {
    border-color: var(--navy-mid);
    background: rgba(44, 82, 130, 0.03);
}

.file-drop-zone.drag-over {
    border-color: var(--gold);
    background: var(--gold-muted);
    border-style: solid;
}

.file-drop-zone.has-file {
    border-color: var(--success);
    border-style: solid;
    background: var(--success-bg);
}

.file-drop-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.drop-zone-icon {
    margin-bottom: 10px;
    color: var(--gray-400);
    transition: color var(--transition);
    line-height: 1;
    display: flex;
    justify-content: center;
}

.file-drop-zone:hover .drop-zone-icon {
    color: var(--navy-mid);
}

.file-drop-zone.has-file .drop-zone-icon {
    color: var(--success);
}

.drop-zone-text {
    font-size: 0.95em;
    color: var(--gray-500);
    margin-bottom: 4px;
    font-weight: 500;
}

.drop-zone-hint {
    font-size: 0.82em;
    color: var(--gray-400);
}

.drop-zone-filename {
    font-size: 0.95em;
    color: var(--success);
    font-weight: 600;
    margin-top: 4px;
}

/* ==========================================================================
   Grid layouts
   ========================================================================== */

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.three-column {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}

/* ==========================================================================
   Checkbox group
   ========================================================================== */

.checkbox-group {
    display: flex;
    align-items: center;
    margin-top: 10px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    margin-right: 10px;
    cursor: pointer;
    position: relative;
    transition: all var(--transition);
    flex-shrink: 0;
}

.checkbox-group input[type="checkbox"]:checked {
    background: var(--navy-mid);
    border-color: var(--navy-mid);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-group input[type="checkbox"]:focus-visible {
    box-shadow: 0 0 0 3px rgba(44, 82, 130, 0.2);
}

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-heading);
}

/* ==========================================================================
   Sections and control groups
   ========================================================================== */

.section {
    margin-bottom: 24px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: border-color var(--transition);
}

.section:hover {
    border-color: var(--gray-300);
}

.section-title {
    font-family: var(--font-body);
    font-size: 1em;
    color: var(--navy);
    margin-bottom: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.control-group {
    margin-bottom: 18px;
}

.control-group:last-child {
    margin-bottom: 0;
}

.info-text {
    font-size: 0.82em;
    color: var(--gray-400);
    margin-top: 6px;
    line-height: 1.5;
}

/* ==========================================================================
   Button
   ========================================================================== */

.button {
    background: var(--navy);
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    width: 100%;
    transition: all var(--transition);
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.button:hover {
    background: var(--navy-mid);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
}

.button:hover::before {
    transform: scaleX(1);
}

.button:active {
    transform: translateY(0);
}

.button:disabled {
    background: var(--gray-300);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.button:disabled::before {
    display: none;
}

/* ==========================================================================
   Status messages
   ========================================================================== */

.status {
    margin-top: 20px;
    padding: 16px 20px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    min-height: 52px;
    text-align: center;
    font-size: 0.95em;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status.status-error {
    background: var(--error-bg);
    border-color: #fecaca;
}

.status.status-success {
    background: var(--success-bg);
    border-color: #bbf7d0;
}

.status.status-warning {
    background: var(--warning-bg);
    border-color: #fde68a;
}

.status.status-processing {
    background: #eef6fd;
    border-color: #bfdbfe;
}

.error {
    color: var(--error);
    font-weight: 500;
}

.success {
    color: var(--success);
    font-weight: 600;
}

.warning {
    color: var(--warning);
    font-weight: 500;
}

/* Loading spinner */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2.5px solid var(--gray-300);
    border-top-color: var(--navy-mid);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
    margin-right: 10px;
}

.status-icon {
    margin-right: 8px;
    font-size: 1.1em;
    vertical-align: middle;
}

/* ==========================================================================
   SEO content section (index page)
   ========================================================================== */

.seo-content {
    background: var(--cream);
    padding: 48px 36px;
    border-radius: var(--radius-md);
    margin-top: 48px;
    line-height: 1.8;
    border: 1px solid var(--gray-200);
}

.seo-content h2 {
    font-family: var(--font-display);
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
}

.seo-content h2::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: var(--gold);
    margin: 16px auto 24px;
    border-radius: 2px;
}

.seo-content-inner h3 {
    font-family: var(--font-display);
    color: var(--navy);
    margin-top: 36px;
    margin-bottom: 14px;
    font-size: 1.45rem;
    font-weight: 600;
}

.seo-content-inner p {
    margin-bottom: 16px;
    color: var(--text-body);
}

.seo-content-inner ul {
    margin-left: 24px;
    margin-bottom: 20px;
    color: var(--gray-600);
}

.seo-content-inner li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.feature-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 28px 0;
}

.feature-highlight-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.feature-highlight-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.feature-highlight-card h3,
.feature-highlight-card h4 {
    color: var(--navy);
    margin-bottom: 8px;
    font-size: 1.05rem;
    font-weight: 700;
}

.feature-highlight-card p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* ==========================================================================
   Homepage — Toolkit Landing Page
   ========================================================================== */

.toolkit-hero {
    text-align: center;
    padding: 40px 20px 20px;
}

.toolkit-hero h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-heading);
    margin: 0 0 12px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin: 0;
}

/* Trust badges row */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding: 16px 20px 32px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-600);
    font-size: 0.88rem;
    font-weight: 500;
}

.trust-badge-item svg {
    color: var(--navy-mid);
    flex-shrink: 0;
}

/* Tool card grid */
.tool-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 0 20px 40px;
}

.tool-card {
    background: white;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: border-color var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.tool-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-md);
}

.tool-card.flagship {
    border-color: var(--navy-mid);
    border-width: 2px;
    grid-column: span 2;
}

.tool-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    position: relative;
}

.tool-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: var(--navy-mid);
    flex-shrink: 0;
}

.tool-card-icon svg {
    width: 20px;
    height: 20px;
}

.tool-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-heading);
    margin: 0;
}

.tool-card p {
    color: var(--text-body);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0 0 16px;
    flex-grow: 1;
}

.tool-card-cta {
    display: inline-block;
    color: var(--navy-mid);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.tool-card:hover .tool-card-cta {
    color: var(--navy);
}

.flagship-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 3px 8px;
    border-radius: var(--radius-sm);
}

.external-badge {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-style: italic;
}

/* ==========================================================================
   Page extractor thumbnails
   ========================================================================== */

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
    padding: 16px 0;
}

.page-thumbnail {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 8px;
    cursor: pointer;
    transition: border-color var(--transition), box-shadow var(--transition);
    text-align: center;
    background: white;
}

.page-thumbnail:hover {
    border-color: var(--navy-mid);
    box-shadow: var(--shadow-sm);
}

.page-thumbnail:focus-visible {
    outline: 3px solid rgba(44, 82, 130, 0.4);
    outline-offset: 2px;
}

.page-thumbnail.selected {
    border-color: var(--navy-mid);
    border-width: 3px;
    background: rgba(44, 82, 130, 0.05);
    box-shadow: var(--shadow-md);
}

.page-thumbnail canvas {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-sm);
}

.page-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}

.selection-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    flex-wrap: wrap;
}

.selection-controls button {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    cursor: pointer;
    transition: background var(--transition);
    font-family: var(--font-body);
}

.selection-controls button:hover {
    background: var(--gray-200);
}

#selectionCount {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-left: auto;
}

/* ==========================================================================
   Responsive (site-specific)
   ========================================================================== */

@media (max-width: 768px) {
    .two-column,
    .three-column {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 20px 16px;
    }

    .seo-content {
        padding: 32px 20px;
    }

    .feature-highlights {
        grid-template-columns: 1fr;
    }

    .tool-card.flagship {
        grid-column: span 1;
    }

    .trust-badges {
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 0.9em;
    }
}

/* ==========================================================================
   Filing assembler
   ========================================================================== */

.exhibit-list {
    min-height: 60px;
    margin-bottom: 16px;
}

.exhibit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
    transition: box-shadow var(--transition);
}

.exhibit-item:hover {
    box-shadow: var(--shadow-sm);
}

.exhibit-ghost {
    opacity: 0.4;
    background: var(--gold-light);
}

.drag-handle {
    cursor: grab;
    color: var(--gray-400);
    font-size: 1.2rem;
    user-select: none;
    padding: 0 4px;
}

.drag-handle:active {
    cursor: grabbing;
}

.exhibit-label {
    width: 140px;
    font-size: 0.88rem;
    font-weight: 600;
    padding: 4px 8px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
}

.exhibit-label:focus {
    outline: none;
    border-color: var(--navy-mid);
    box-shadow: 0 0 0 2px rgba(44, 82, 130, 0.15);
}

.exhibit-info {
    flex: 1;
    font-size: 0.82rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}

.exhibit-remove {
    background: none;
    border: none;
    color: var(--error);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    line-height: 1;
    flex-shrink: 0;
    transition: background var(--transition);
}

.exhibit-remove:hover {
    background: var(--error-bg);
}

.exhibit-list-empty {
    color: var(--text-muted);
    text-align: center;
    padding: 20px;
    font-size: 0.88rem;
    margin: 0;
}

.assembly-summary {
    display: flex;
    gap: 24px;
    justify-content: center;
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius-md);
    margin: 16px 0;
    font-size: 0.88rem;
    color: var(--text-body);
    flex-wrap: wrap;
    border: 1px solid var(--gray-200);
}

.section-hint {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: -8px 0 12px;
}

@media (max-width: 480px) {
    .exhibit-item {
        flex-wrap: wrap;
    }

    .exhibit-label {
        width: 120px;
    }
}

/* ==========================================================================
   PDF Compressor — compression level radio options
   ========================================================================== */

.compression-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}

.compression-option:last-child {
    margin-bottom: 0;
}

.compression-option:hover {
    border-color: var(--navy-mid);
    background: rgba(44, 82, 130, 0.03);
}

.compression-option input[type="radio"] {
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--navy-mid);
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.compression-option:has(input:checked) {
    border-color: var(--navy-mid);
    background: rgba(44, 82, 130, 0.05);
}

.compression-option-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.compression-option-label {
    font-weight: 600;
    color: var(--text-heading);
    font-size: 0.95rem;
}

.compression-dpi {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 0.88em;
}

.compression-option-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Disclaimer / warning notice */
.disclaimer {
    background: var(--warning-bg);
    border: 1px solid rgba(180, 83, 9, 0.2);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-bottom: 20px;
}

.disclaimer h3 {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--warning);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 6px;
}

.disclaimer p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   PDF Compressor — progress bar
   ========================================================================== */

.progress-container {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    height: 32px;
    position: relative;
    overflow: hidden;
    margin: 16px 0;
}

.progress-bar {
    background: linear-gradient(135deg, var(--navy-mid), var(--navy));
    height: 100%;
    border-radius: var(--radius-md);
    transition: width 0.3s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    white-space: nowrap;
}

/* ==========================================================================
   PDF Compressor — results display
   ========================================================================== */

.compression-results {
    display: flex;
    gap: 24px;
    justify-content: center;
    padding: 20px;
    flex-wrap: wrap;
}

.result-stat {
    text-align: center;
}

.result-stat .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    font-family: var(--font-display);
}

.result-stat .label {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.result-stat.highlight .value {
    color: var(--success);
}

/* Visually hidden (accessible screen-reader text) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==========================================================================
   Privilege Redaction Tool — workspace layout
   ========================================================================== */

/* -- Redaction toolbar (reason selector + hint) -- */
.redaction-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 16px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
}

.redaction-toolbar-reason {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.redaction-toolbar-reason label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-heading);
    white-space: nowrap;
}

.redaction-toolbar-reason select {
    font-size: 0.85rem;
    padding: 5px 10px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    background: var(--white);
}

.redaction-toolbar-reason input[type="text"] {
    font-size: 0.85rem;
    padding: 5px 10px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    width: 160px;
}

.redaction-toolbar-hint {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin: 0;
    white-space: nowrap;
}

/* -- Full-width page viewer -- */
.redaction-viewer {
    min-width: 0;
}

.canvas-container {
    position: relative;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: crosshair;
    background: var(--gray-100);
}

.canvas-container canvas {
    display: block;
    width: 100%;
    height: auto;
}

#drawCanvas {
    position: absolute;
    top: 0;
    left: 0;
}

.page-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 0;
}

.page-nav button {
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    padding: 6px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background var(--transition);
}

.page-nav button:hover:not(:disabled) {
    background: var(--gray-200);
}

.page-nav button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.page-nav span {
    font-size: 0.88rem;
    color: var(--text-muted);
    font-weight: 500;
    min-width: 80px;
    text-align: center;
}

/* -- Redaction list (below canvas) -- */
.redaction-list-section {
    margin-top: 16px;
}

.redaction-list {
    max-height: 240px;
    overflow-y: auto;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 8px;
    background: var(--white);
}

.redaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 8px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.85rem;
}

.redaction-item:last-child {
    border-bottom: none;
}

.redaction-item-info {
    color: var(--text-body);
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.redaction-item-info > div:first-child {
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.redaction-item-page {
    color: var(--text-muted);
    font-size: 0.78rem;
    margin-top: 1px;
}

.redaction-item button {
    background: none;
    border: none;
    color: var(--error);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 4px 8px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    transition: background var(--transition);
}

.redaction-item button:hover {
    background: var(--error-bg);
}

.redaction-list-empty {
    color: var(--text-muted);
    text-align: center;
    padding: 16px;
    font-size: 0.88rem;
    margin: 0;
}

.redaction-list-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-heading);
    margin: 0 0 8px;
    font-family: var(--font-body);
}

@media (max-width: 768px) {
    .redaction-toolbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .redaction-toolbar-hint {
        white-space: normal;
    }
}

/* ==========================================================================
   Pipeline suggestions
   ========================================================================== */

.pipeline-suggestions {
    text-align: center;
    padding: 16px;
    margin: 12px 0;
    background: var(--gold-muted);
    border-radius: var(--radius-md);
    border: 1px solid var(--gold-light);
}

.pipeline-title {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0 0 10px;
}

.pipeline-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.pipeline-link {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    color: var(--navy-mid);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.pipeline-link:hover {
    border-color: var(--navy-mid);
    box-shadow: var(--shadow-sm);
}
