﻿body {
}
/* Clamp long text to 2 lines (mobile-friendly) */
.mud-text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Buttons: stacked on xs, inline on sm+ */
.action-buttons {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

@media (min-width: 600px) {
    .action-buttons {
        grid-template-columns: auto auto;
        justify-content: start;
    }

        .action-buttons .mud-button-root {
            width: auto !important;
        }
}
