/* Общие стили для всех элементов */
* {
    font-family: 'Calibri', sans-serif;
    font-size: 16px;
}

/* Отступ для body */
body {
    padding-top: 30px;
}

/* Поля поиска */
input.search {
    min-width: 300px;
    margin-right: 15px;
}

/* Универсальные стили для input */
input {
    height: 40px;
    padding: 10px;
    border: none;
    border-radius: 5px;
    box-shadow: 0 0 9px -2px rgba(0, 0, 0, 0.2);
}

/* Поле ввода скидки в корзине */
.in-cart-discount input {
    width: 70px;
}

/* Кнопки добавления и удаления */
button.add,
button.good-delete {
    display: flex;
    align-items: center;
    justify-content: center;

    border: none;
    border-radius: 5px;
    box-shadow: 0 0 9px -2px rgba(0, 0, 0, 0.2);
    height: 40px;
    width: 40px;
    font-size: 20px;
    cursor: pointer;
}

/* Основной контейнер приложения */
.container {
    background-color: #f8f8f8;
    box-shadow: 0 0 9px -2px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

/* Верхнее меню */
.menu {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 50px;
    margin-top: 15px;
    margin-bottom: 15px;
}

/* Заголовок общей стоимости */
.total-cost-title,
.total-cost-title span {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 24px;
}

/* Таблицы */
th {
    padding: 15px;
    text-align: center;
    cursor: pointer;
}

tr {
    height: 30px;
}

td {
    padding: 15px;
    text-align: center;
}

/* Специфические поля для формы добавления товара */
#good-price,
#good-price-addon {
    display: flex;
    align-items: center;
    height: 40px;
}
