/* Custom styles for recipe manager */

/* Nav "More" menu: hide default disclosure triangle for consistent styling */
details summary.nav-more-summary::-webkit-details-marker {
    display: none;
}

details summary.nav-more-summary {
    list-style: none;
}

/* Optional layout hooks — widths stay on <main> via Tailwind max-w-* */
.app-main {
    min-height: 0;
}

.app-main--narrow {
    min-height: 0;
}

.htmx-indicator {
    opacity: 0;
    transition: opacity 200ms ease-in;
}

.htmx-request .htmx-indicator {
    opacity: 1;
}

.htmx-request.htmx-indicator {
    opacity: 1;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

