/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */

dialog[data-modal-target="dialog"] {
    margin: auto;
    max-height: calc(100dvh - 2rem);
    overflow: auto;
}

.filter-panel > summary {
    list-style: none;
}

.filter-panel > summary::-webkit-details-marker {
    display: none;
}

.account-menu > summary {
    list-style: none;
}

.account-menu > summary::-webkit-details-marker {
    display: none;
}

.pipeline-filter-menu > summary {
    list-style: none;
}

.pipeline-filter-menu > summary::-webkit-details-marker {
    display: none;
}

.account-popover {
    inset: 3.5rem 1rem auto auto;
    margin: 0;
}

.filter-panel-chevron::before {
    content: "▾";
}

.filter-panel:not([open]) .filter-panel-chevron::before {
    content: "▸";
}

.pipeline-kanban-column {
    min-width: 15rem;
}

.triage-layout {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: minmax(0, 3fr) minmax(28rem, 2fr);
}

@media (max-width: 900px) {
    .triage-layout {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 1536px) {
    .pipeline-kanban-column {
        min-width: 18rem;
    }
}
