﻿.unified-crud-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    border-bottom: 1px solid var(--crud-border, var(--fa-border-soft, #bcd3f1));
    padding-bottom: .6rem;
    margin-bottom: 1rem;
}

    .unified-crud-header h2 {
        font-weight: 600;
        letter-spacing: .5px;
        font-size: 1.35rem;
    }

    .unified-crud-header.crud-header-compact h2 {
        font-size: 1.05rem;
    }

    .unified-crud-header .btn {
        min-width: 110px;
    }

.crud-header-actions {
    width: 100%;
    display: flex !important;
    flex-direction: row;
    justify-content: flex-end;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    gap: 0.5rem;
}

.crud-title-desktop {
    display: inline;
}

.crud-header-actions-mobile {
    display: none;
}

.menu-name-mobile {
    display: none;
}
.menu-name-mobile-block {
    display: none;
}
.menu-name-mobile-block {
    display: none !important;
}

    @media (max-width: 767.98px) {
        .unified-crud-header {
            display: none !important;
        }

        .crud-header-actions-mobile {
            display: flex !important;
            flex-direction: row;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 1rem;
            gap: 0.5rem;
        }

            .crud-header-actions-mobile .btn {
                min-width: 110px;
                font-size: 1rem;
                padding: 0.375rem 0.75rem;
            }

        .menu-name-mobile {
            display: block !important;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: bold;
            text-transform: uppercase;
        }
        .menu-name-mobile-block {
            display: block !important;
        }

            .menu-name-mobile-block .form-label {
                font-size: 1rem;
                font-weight: 600;
                text-transform: uppercase;
                margin-bottom: 0.25rem;
                color: #185c2a;
                letter-spacing: 0.02em;
            }

        .menu-name-value {
            font-size: 1.05rem;
            font-weight: 700;
            color: #185c2a;
            margin-bottom: 0.5rem;
        }
        .menu-name-desktop-block {
            display: none !important;
        }
    }
