* {
    padding: 0;
    margin: 0;
    border: 0;
}


    *,
    *:before,
    *:after {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }


:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}


nav,
footer,
header,
aside {
    display: block;
}


html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 16px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}


input,
button,
textarea {
    font-family: inherit;
}


    input::-ms-clear {
        display: none;
    }

button {
    cursor: pointer;
}

    button::-moz-focus-inner {
        padding: 0;
        border: 0;
    }

a,
a:visited {
    text-decoration: none;
}

    a:hover {
        text-decoration: none;
    }

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}

.zoomed-image {
    transform: scale(2);
    transition: transform 0.3s ease;
    cursor: zoom-out;
}


/* Универсальный стиль карточек */
.order-card {
    border-radius: 12px;
    padding: 16px;
}

/* Заголовки секций */
.order-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

/* Пустые состояния таблиц */
.order-empty-state {
    text-align: center;
    padding: 24px;
    color: var(--mud-palette-text-secondary);
    border-radius: 8px;
    background-color: var(--mud-palette-background-grey);
}

/* Фиксированная панель с кнопкой */
.order-action-bar {
    display: flex;
    justify-content: flex-end;
    padding: 12px 16px;
    position: sticky;
    bottom: 0;
    background-color: var(--mud-palette-background-paper);
    border-top: 1px solid var(--mud-palette-divider);
    z-index: 100;
}

/* Улучшаем hover таблиц */
.mud-table tr:hover {
    background-color: rgba(0, 0, 0, 0.03);
}

/* Разрешаем иконкам быть чуть крупнее */
.mud-icon-root {
    font-size: 22px;
}
 