@charset "UTF-8";
/* Подключение шрифтов Roboto Condensed */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 300;
  src: url("./fonts/RobotoCondensed-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 300;
  src: url("./fonts/RobotoCondensed-LightItalic.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: url("./fonts/RobotoCondensed-Regular.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 400;
  src: url("./fonts/RobotoCondensed-Italic.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  src: url("./fonts/RobotoCondensed-Bold.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 700;
  src: url("./fonts/RobotoCondensed-BoldItalic.ttf") format("truetype");
}
/* Основные стили */
.reestr-tsg-container {
  margin: 20px 0;
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  /*box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);*/
  max-width: 100%;
  overflow-x: hidden;
}
.reestr-tsg-container .reestr-tsg-header {
  text-align: center;
  margin-bottom: 20px;
}
.reestr-tsg-container .reestr-tsg-header h2 {
  margin: 0;
  color: #333;
  font-size: 1.5rem;
  line-height: 1.3;
}
.reestr-tsg-container .download-section {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 425px) {
  .reestr-tsg-container .download-title {
    display: none;
  }
}
.reestr-tsg-container .download-icon {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  background: #f5f5f5;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s;
  border: 1px solid #ddd;
  white-space: nowrap;
}
.reestr-tsg-container .download-icon:hover {
  background: #e0e0e0;
  transform: translateY(-2px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.reestr-tsg-container .download-icon.excel:hover {
  background: #e8f5e8;
  border-color: #4CAF50;
}
.reestr-tsg-container .download-icon.docx:hover {
  background: #e8f0fe;
  border-color: #2196F3;
}
.reestr-tsg-container .download-icon.pdf:hover {
  background: #fee8e8;
  border-color: #f44336;
}
.reestr-tsg-container .download-icon img {
  /*width: 24px;*/
  height: 24px;
}
.reestr-tsg-container .control-section {
  display: flex;
  flex-wrap: wrap;
}
.reestr-tsg-container {
  /* Стили для поиска */
}
.reestr-tsg-container .search-section {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  flex: 1;
  margin-right: 15px;
}
.reestr-tsg-container .search-header {
  margin-bottom: 15px;
}
.reestr-tsg-container .search-header h3 {
  margin: 0;
  font-size: 16px;
  color: #495057;
}
.reestr-tsg-container .search-body {
  display: flex;
  margin-bottom: 0 !important;
}
.reestr-tsg-container {
  /* Стили для блока настроек просмотра */
}
.reestr-tsg-container .view-settings-section {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  flex: 1;
}
.reestr-tsg-container .settings-header {
  margin-bottom: 15px;
}
.reestr-tsg-container .settings-header h3 {
  margin: 0;
  font-size: 16px;
  color: #495057;
}
.reestr-tsg-container .settings-body {
  margin-bottom: 0 !important;
  display: flex;
}
.reestr-tsg-container .radio-group {
  display: flex;
  gap: 6px;
  padding: 4px 0;
  flex-wrap: wrap;
}
.reestr-tsg-container .radio-label {
  display: flex !important;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
}
.reestr-tsg-container .radio-label input[type=radio] {
  margin: 0;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.reestr-tsg-container {
  /* Стили для таблицы - основное изменение */
}
.reestr-tsg-container .table-wrapper {
  width: 100%;
  margin-bottom: 20px;
  background: white;
  overflow: hidden;
}
.reestr-tsg-container .reestr-table {
  border-collapse: collapse;
  table-layout: fixed;
  word-wrap: break-word;
  font-size: 14px;
  font-family: "Roboto Condensed", Arial, sans-serif;
  font-weight: 400;
}
.reestr-tsg-container .reestr-table thead {
  display: table-header-group;
  text-align: center;
}
.reestr-tsg-container .reestr-table .header-subrow {
  text-align: center;
  background-color: #ddd;
}
.reestr-tsg-container .reestr-table tbody {
  display: table-row-group;
}
.reestr-tsg-container .reestr-table tr {
  display: table-row;
}
.reestr-tsg-container .reestr-table th {
  background: lightyellow;
  /*color: white;*/
  border: 1px solid #ccc;
  padding: 5px 5px;
  text-align: center;
  font-weight: 500;
  width: auto;
  /* Автоматическая ширина */
  vertical-align: top;
  word-wrap: break-word;
  white-space: normal;
  /* Разрешаем перенос */
  line-height: 1.4;
}
.reestr-tsg-container .reestr-table td {
  border: 1px solid #ccc;
  padding: 5px 5px;
  vertical-align: top;
  word-wrap: break-word;
  white-space: normal;
  /* Разрешаем перенос */
  line-height: 1.3;
}
.reestr-tsg-container {
  /* Устанавливаем примерное соотношение ширины колонок */
}
.reestr-tsg-container .reestr-table th[data-field=ID],
.reestr-tsg-container .reestr-table td:first-child {
  width: 5%;
}
.reestr-tsg-container .reestr-table th[data-field=DATE_INCLUDE] {
  width: 8%;
}
.reestr-tsg-container .reestr-table th[data-field=PRODUCER_NAME],
.reestr-tsg-container .reestr-table th[data-field=PRODUCER_ADDRESS],
.reestr-tsg-container .reestr-table th[data-field=PRODUCT_NAME] {
  width: 12%;
  /* Чуть шире для важных полей */
}
.reestr-tsg-container .reestr-table th[data-field=PRODUCER_CODE] {
  width: 8%;
}
.reestr-tsg-container .reestr-table th[data-field=VERIFY_ORG],
.reestr-tsg-container .reestr-table th[data-field=ISSUE_ORG] {
  width: 10%;
}
.reestr-tsg-container .reestr-table th[data-field=COOP_LEVEL_TOTAL],
.reestr-tsg-container .reestr-table th[data-field=COOP_LEVEL_BEL],
.reestr-tsg-container .reestr-table th[data-field=COOP_LEVEL_RUS] {
  width: 6%;
}
.reestr-tsg-container .reestr-table th.actions-column {
  width: 2%;
}
.reestr-tsg-container .reestr-table tbody tr:hover {
  background: #f9f9f9;
}
.reestr-tsg-container .actions {
  text-align: center;
  vertical-align: middle !important;
}
.reestr-tsg-container .actions button {
  background: none;
  border: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
  transition: all 0.2s;
}
.reestr-tsg-container .actions button:hover {
  transform: scale(1.1);
}
.reestr-tsg-container .actions .edit-row {
  background: none;
  border: none;
  cursor: pointer;
  margin: 0;
  padding: 0;
  transition: all 0.2s;
  width: 32px;
  height: 32px;
  display: inline-block;
  background-image: url("./images/edit-icon.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px 20px;
}
.reestr-tsg-container .actions .edit-row:hover {
  opacity: 0.7;
  transform: scale(1.1);
}
.reestr-tsg-container .empty-message {
  text-align: center;
  padding: 40px;
  color: #999;
  font-style: italic;
  font-size: 16px;
}
.reestr-tsg-container .table-controls {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.reestr-tsg-container .records-count {
  font-size: 16px;
}
.reestr-tsg-container {
  /* Стили для пагинации */
}
.reestr-tsg-container .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.reestr-tsg-container .page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid #dee2e6;
  background: white;
  color: #4CAF50;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  font-size: 14px;
}
.reestr-tsg-container .page-link:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}
.reestr-tsg-container .page-link.current {
  background: #4CAF50;
  color: white;
  border-color: #4CAF50;
  cursor: default;
}
.reestr-tsg-container .page-link.first,
.reestr-tsg-container .page-link.last,
.reestr-tsg-container .page-link.prev,
.reestr-tsg-container .page-link.next {
  font-weight: bold;
}
.reestr-tsg-container {
  /* Стили для модального окна */
}
.reestr-tsg-container .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.reestr-tsg-container .modal-content {
  background-color: #fefefe;
  margin: 5% auto;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  width: 600px;
  max-width: 90%;
  animation: modalSlideIn 0.3s;
}
@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.reestr-tsg-container .modal-header {
  padding: 15px 20px;
  background: #4CAF50;
  color: white;
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reestr-tsg-container .modal-header h3 {
  margin: 0;
  font-size: 18px;
  color: white;
}
.reestr-tsg-container .close-modal {
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}
.reestr-tsg-container .close-modal:hover {
  opacity: 0.8;
}
.reestr-tsg-container .modal-body {
  padding: 20px;
  max-height: 60vh;
  overflow-y: auto;
}
.reestr-tsg-container .modal-footer {
  padding: 15px 20px;
  background: #f5f5f5;
  border-radius: 0 0 8px 8px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.reestr-tsg-container #save-status {
  padding: 15px 20px;
}
.reestr-tsg-container {
  /* Стили для формы */
}
.reestr-tsg-container .form-group {
  margin-bottom: 15px;
}
.reestr-tsg-container .form-group label {
  display: block;
  margin-bottom: 5px;
  /*font-weight: 500;*/
  color: #333;
}
.reestr-tsg-container .form-group input,
.reestr-tsg-container .form-group select,
.reestr-tsg-container .form-group textarea {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  box-sizing: border-box;
  background-color: white;
}
.reestr-tsg-container .form-group input:focus,
.reestr-tsg-container .form-group select:focus,
.reestr-tsg-container .form-group textarea:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}
.reestr-tsg-container .form-group textarea {
  min-height: 80px;
  resize: vertical;
}
.reestr-tsg-container .btn {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  box-sizing: border-box;
}
.reestr-tsg-container .btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.reestr-tsg-container .btn-primary {
  background: #4CAF50;
  color: white;
}
.reestr-tsg-container .btn-success {
  background: #4CAF50;
  color: white;
}
.reestr-tsg-container .btn-danger {
  background: #f44336;
  color: white;
}
.reestr-tsg-container .btn-secondary {
  background: #9e9e9e;
  color: white;
}
.reestr-tsg-container {
  /* Информационная секция */
}
.reestr-tsg-container .info-section {
  margin-top: 40px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #e9ecef;
}
.reestr-tsg-container .info-section h3 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #333;
  font-size: 1.2rem;
}
.reestr-tsg-container .info-icons {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.reestr-tsg-container .info-item {
  text-align: center;
  width: 160px;
}
.reestr-tsg-container .info-item a {
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s;
}
.reestr-tsg-container .info-item a:hover {
  background: white;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}
.reestr-tsg-container .info-item img {
  width: 48px;
  height: 48px;
}
.reestr-tsg-container .info-item span {
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  word-wrap: break-word;
}
.reestr-tsg-container {
  /* Медиа-запросы для адаптивности */
}
@media (max-width: 1200px) {
  .reestr-tsg-container .reestr-table {
    font-size: 13px;
  }
  .reestr-tsg-container .reestr-table th,
  .reestr-tsg-container .reestr-table td {
    padding: 8px 5px;
  }
}
@media (max-width: 992px) {
  .reestr-tsg-container .table-wrapper {
    overflow-x: scroll;
  }
  .reestr-tsg-container .reestr-table {
    font-size: 12px;
  }
  .reestr-tsg-container .reestr-table th,
  .reestr-tsg-container .reestr-table td {
    padding: 6px 4px;
  }
}
.reestr-tsg-container {
  /* Стили для блока авторизации */
}
.reestr-tsg-container .auth-section {
  display: flex;
  align-items: center;
}
.reestr-tsg-container .user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e8f5e8;
  padding: 5px 15px;
  border-radius: 30px;
  border: 1px solid #4CAF50;
}
.reestr-tsg-container .user-name {
  font-weight: 500;
  color: #2e7d32;
}
.reestr-tsg-container .btn-login {
  background: #4CAF50;
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.reestr-tsg-container .btn-login:hover {
  background: #388e3c;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}
.reestr-tsg-container .btn-logout {
  background: #4CAF50;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
}
.reestr-tsg-container .btn-logout:hover {
  background: #3d8f40;
}
.reestr-tsg-container {
  /* Стили для модального окна авторизации */
}
.reestr-tsg-container .login-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}
.reestr-tsg-container .login-modal-content {
  background-color: #fefefe;
  margin: 10% auto;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  width: 325px;
  max-width: 90%;
  animation: modalSlideIn 0.3s;
}
.reestr-tsg-container .login-modal-header {
  padding: 15px 20px;
  background: #4CAF50;
  color: white;
  border-radius: 8px 8px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.reestr-tsg-container .login-modal-header h3 {
  margin: 0;
  font-size: 18px;
  color: white;
}
.reestr-tsg-container .close-login-modal {
  color: white;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}
.reestr-tsg-container .close-login-modal:hover {
  opacity: 0.8;
}
.reestr-tsg-container .login-modal-body {
  padding: 25px;
  max-height: 70vh;
  overflow-y: auto;
}
.reestr-tsg-container {
  /* Стили для компонента авторизации внутри модального окна */
}
.reestr-tsg-container .login-modal-body .bx-system-auth-form {
  padding: 0;
}
.reestr-tsg-container .login-modal-body .bx-system-auth-form input[type=text],
.reestr-tsg-container .login-modal-body .bx-system-auth-form input[type=password] {
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.reestr-tsg-container .login-modal-body .bx-system-auth-form input[type=submit] {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}
.reestr-tsg-container .login-modal-body .bx-system-auth-form input[type=submit]:hover {
  background: #388e3c;
}
.reestr-tsg-container {
  /* Адаптивность */
}
@media (max-width: 768px) {
  .reestr-tsg-container .header-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .reestr-tsg-container .download-section {
    width: 100%;
    justify-content: center;
  }
  .reestr-tsg-container .auth-section {
    width: 100%;
    justify-content: center;
  }
  .reestr-tsg-container .user-info {
    width: 100%;
    justify-content: space-between;
  }
  .reestr-tsg-container .login-form {
    margin: 10px;
    padding: 20px;
  }
  .reestr-tsg-container .login-form .form-actions {
    flex-direction: column;
  }
  .reestr-tsg-container .search-section,
  .reestr-tsg-container .view-settings-section {
    margin-right: 0;
    flex: auto;
  }
  .reestr-tsg-container .search-body,
  .reestr-tsg-container .settings-body {
    flex-wrap: wrap;
  }
}
.reestr-tsg-container {
  /* Стили для отображения ролей пользователей */
}
.reestr-tsg-container .user-info {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #e8f5e8;
  padding: 5px 15px;
  border-radius: 30px;
  border: 1px solid #4CAF50;
}
.reestr-tsg-container .user-name {
  font-weight: 500;
  color: #2e7d32;
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.reestr-tsg-container .user-role {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 12px;
  font-weight: normal;
}
.reestr-tsg-container .user-role.admin {
  background: #f44336;
  color: white;
}
.reestr-tsg-container .user-role.operator {
  background: #2196F3;
  color: white;
}
.reestr-tsg-container .user-role.user {
  background: #9e9e9e;
  color: white;
}
.reestr-tsg-container .btn-logout {
  background: #4CAF50;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 13px;
  text-decoration: none;
  transition: all 0.3s;
}
.reestr-tsg-container .btn-logout:hover {
  background: #3b8d3e;
}
.reestr-tsg-container {
  /* Стили для ошибок валидации */
}
.reestr-tsg-container .form-group .error {
  border: 2px solid #f44336 !important;
  background-color: #ffebee;
}
.reestr-tsg-container .error-message {
  color: #f44336;
  font-size: 12px;
  margin-top: 5px;
  padding: 5px;
  background-color: #ffebee;
  border: 1px solid #f44336;
  border-radius: 4px;
  display: none;
}
.reestr-tsg-container {
  /* Анимация для привлечения внимания */
}
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-3px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(3px);
  }
}
.reestr-tsg-container .form-group .error {
  animation: shake 0.5s ease-in-out;
}
.reestr-tsg-container .d-flex {
  display: flex;
}
.reestr-tsg-container .f-space-between {
  justify-content: space-between;
}
.reestr-tsg-container .f-align-center {
  align-items: center;
}
.reestr-tsg-container .mr-05 {
  margin-right: 0.5rem;
}
.reestr-tsg-container .mr-1 {
  margin-right: 1rem;
}
.reestr-tsg-container .mb-1 {
  margin-bottom: 1rem;
}/*# sourceMappingURL=style.css.map */