body {
  background-color:#EDEFEB;
  font-family: Open Sans;
}

/* Закрепление первого столбца в таблицах DataTable при горизонтальной прокрутке */
.dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner table thead tr th:first-child,
.dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner table tbody tr td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background-color: white;
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.1);
}

/* Для заголовков - более высокий z-index и фон */
.dash-table-container .dash-spreadsheet-container .dash-spreadsheet-inner table thead tr th:first-child {
    z-index: 3;
    background-color: white;
}

Label {
    font-size: 14px;
}

.my_tabs {
    font-size: 14px;
    margin-bottom: 20px;
    height: 70px;
    display: none;
    text-align: center;
    font-family: sans-serif;
    background-color:#181513;
}

.my_graphs {
    width: 49%;
    height: 500px;
    background-color: #FFFFFF;
}

.big_graphs {
    width: 95%;
    height: 500px;
    background-color: #FFFFFF;
}

/* Форматирование карточек*/
.card {
    font-size: 14px;
    font-family: sans-serif;
    word-wrap: break-word;
    margin-bottom: 20px;
    height: 80px;
    width: 120px;
    display: inline-block;
    text-align: center;
    border: 1px solid black;
    border-radius: 10px;
    padding: 2px;
    transform: translateY(8px);
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.card-zero {
    font-size: 14px;
    background-color: #9966CC;
}

.card-first {
    font-size: 14px;
    background-color: #78DBE2;
}

.card-second {
    font-size: 14px;
    background-color: #A8E4A0;
}

.card-third {
    font-size: 14px;
    background-color: #FBCEB1;
}

.card-forth {
    font-size: 14px;
    background-color: #FF47CA;
}

.card-fivth {
    font-size: 14px;
    background-color: #7FFFD4;
}

.card_div {
    display: flex;
    justify-content: space-between;
    alignItems: stretch; 
    border: none;
    margin-bottom: 20px;
    height: 90px;
    margin-left: 50px;
    margin-right: 50px;
}

.Select-menu-outer {
    background-color: white !important; /* Белый фон для элементов */
}

/* Стили для текста внутри выпадающего списка */
.Select-option {
    color: black !important; /* Черный текст для элементов */
}

/* Стили для выбранного элемента */
.Select-value-label {
    color: black !important; /* Черный текст для выбранного элемента */}

.dash-tab .dash-tab-label {
    font-family: 'Arial', sans-serif;
    font-size: 18px;
    font-weight: bold;
}

/* Форматирование кнопок*/
Button {
    width: 300px;
    height: 30px;
    background-color: #F9F9F8;
    margin-bottom: 20px;
    margin-right: 20px;
    border: 0.5px solid grey;
    color: black;
    text-align: center;
    align-items: center;
    text-decoration: none;
    display: none;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease; /* Плавно переключаем свойства */
    border-radius: 15px; /* Дополнительный стиль - округлые углы */
    transition-duration: 0.4s;
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.2);
}

Button:hover {
  background-color: #3e8e41; /* Цвет при наведении */
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); /* Тень при наведении */
  transform: translateY(2px); /* Поднимаем кнопку */
}

Button:active {
  background-color: #2e6c31; /* Цвет при нажатии */
  transform: translateY(4px); /* Продавливаем кнопку */
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3); /* Тень при нажатии */
}

.start_button {
    display: inline-block
}

/* Стили для мини-изображений товаров в таблице */
.photo-container {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 60px;
    overflow: visible;
    z-index: 1;
}

.product-photo {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}