* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, sans-serif;
  color: #1f2933;
  background: #f4f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.page {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.block {
  width: 100%;
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(31, 41, 51, 0.08);
  padding: 28px;
}

.site-header {
  text-align: center;
}

.logo {
  display: block;
  width: 120px;
  max-width: 100%;
  height: auto;
  margin: 0 auto 18px;
}

.site-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 700;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-message {
  border: 1px solid #d26a6a;
  border-radius: 6px;
  padding: 10px 12px;
  background: #fff1f1;
  color: #8a2424;
  font-size: 15px;
  font-weight: 700;
}

.form-message + .object-form,
.form-message + .form-message {
  margin-top: 18px;
}

.form-message-success {
  border-color: #68b684;
  background: #effaf3;
  color: #226b3a;
}

label {
  font-size: 15px;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #c8d3df;
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 16px;
  color: #1f2933;
  background: #ffffff;
}

input:focus,
select:focus {
  outline: 2px solid #2f80ed;
  outline-offset: 2px;
  border-color: #2f80ed;
}

button {
  min-height: 46px;
  border: 0;
  border-radius: 6px;
  background: #1b5faa;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

button:hover {
  background: #164f8d;
}

.menu-page {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  overflow: hidden;
}

.menu-header,
.menu-footer {
  position: fixed;
  left: 0;
  z-index: 10;
  width: 100%;
  background: #d4d4d4;
  border-color: #dbe3ee;
  box-shadow: 0 8px 24px rgba(31, 41, 51, 0.08);
}

.menu-header {
  top: 0;
  min-height: 78px;
  border-bottom: 1px solid #dbe3ee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 28px;
}

.menu-brand,
.menu-user-panel {
  display: flex;
  align-items: center;
}

.menu-brand {
  gap: 16px;
  min-width: 0;
}

.menu-logo {
  width: 62px;
  height: auto;
  flex: 0 0 auto;
}

.menu-title {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 700;
  white-space: nowrap;
}

.menu-user-panel {
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.menu-user-login {
  margin-right: 8px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
}

.menu-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  padding: 8px 14px;
  background: #1b5faa;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}

.menu-button:hover {
  background: #164f8d;
}

.menu-button-exit {
  background: #a33a3a;
}

.menu-button-exit:hover {
  background: #842f2f;
}

.menu-button-back,
.menu-button-home,
.menu-button-exit,
.menu-footer-top-button {
  background-repeat: no-repeat;
  background-position: center;
}

.menu-body {
  width: 100%;
  height: 100vh;
  padding: 102px 28px 70px;
}

.menu-scroll-block {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: #ffffff;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 24px;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 280px));
  justify-content: center;
  gap: 18px;
}

.menu-card {
  width: 100%;
  max-width: 280px;
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 16px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 18px;
  background: #d4d4d4;
  color: #1f2933;
  text-decoration: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.menu-card:hover {
  border-color: #8fb7e7;
  box-shadow: 0 10px 24px rgba(31, 41, 51, 0.1);
  transform: translateY(-2px);
}

.menu-card-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}

.menu-card-title {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 700;
}

.report-object-form {
  width: 100%;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(190px, 230px) minmax(280px, 1fr) auto;
  align-items: end;
  gap: 18px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 20px;
  background: #f8fbff;
}

.report-object-status {
  min-height: 52px;
  margin: 0;
  border: 0;
  padding: 0;
}

.report-object-status legend {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
}

.report-object-field {
  grid-column: 2 / 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report-object-search {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.report-object-actions {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 10px;
}

.report-object-actions button {
  min-width: 150px;
}

.report-xls-download {
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #c8d3df;
  border-radius: 6px;
  background: #ffffff;
}

.report-xls-download img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.report-xls-download:hover {
  background: #effaf3;
  border-color: #68b684;
}

.payments-object-form {
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr) auto;
}

.payments-report-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 12px;
}

.payments-report-summary div {
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 12px 14px;
  background: #f8fbff;
}

.payments-report-summary span {
  display: block;
  margin-bottom: 5px;
  color: #697586;
  font-size: 13px;
}

.payments-report-summary strong {
  display: block;
  color: #1f2933;
  font-size: 15px;
  line-height: 1.35;
}

.payments-table {
  min-width: 900px;
}

.payments-contract-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payments-contract-block + .payments-contract-block {
  border-top: 1px solid #dbe3ee;
  padding-top: 20px;
}

.payments-contract-summary {
  grid-template-columns: minmax(180px, 260px);
}

.gotivka-report-form {
  width: 100%;
  margin: 28px auto 0;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(300px, 1.4fr) minmax(130px, 180px) auto;
  align-items: end;
  gap: 18px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 20px;
  background: #f8fbff;
}

.gotivka-report-field,
.gotivka-report-period {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gotivka-report-field {
  flex-direction: column;
  align-items: stretch;
}

.gotivka-report-period-title {
  flex: 0 0 auto;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.gotivka-report-period-grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: auto minmax(130px, 1fr) auto minmax(130px, 1fr);
  align-items: center;
  gap: 10px;
}

.gotivka-report-period-grid label {
  white-space: nowrap;
}

.gotivka-report-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gotivka-report-actions button[type="submit"] {
  min-width: 150px;
}

.gotivka-report-message {
  margin-top: 18px;
}

.gotivka-cashflow-table {
  min-width: 1120px;
}

.cashflow-report {
  margin: 28px auto 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cashflow-report-heading {
  width: 100%;
  margin: 0 auto;
  font-size: 20px;
  font-weight: 700;
}

.cashflow-currency-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cashflow-currency-block + .cashflow-currency-block {
  border-top: 1px solid #dbe3ee;
  padding-top: 24px;
}

.cashflow-currency-heading {
  width: 100%;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 12px 16px;
  background: #f8fbff;
  font-size: 18px;
  font-weight: 700;
}

.cashflow-table-section {
  width: 100%;
  margin: 0 auto;
}

.cashflow-table-section h2 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
}

.cashflow-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #ffffff;
}

.cashflow-table {
  width: 100%;
  min-width: 1280px;
  border-collapse: collapse;
  font-size: 14px;
}

.cashflow-table th,
.cashflow-table td {
  border-bottom: 1px solid #e6edf5;
  border-right: 1px solid #e6edf5;
  padding: 9px 10px;
  vertical-align: top;
  text-align: left;
}

.cashflow-table th:last-child,
.cashflow-table td:last-child {
  border-right: 0;
}

.cashflow-table th {
  background: #eef4fb;
  font-weight: 700;
  white-space: nowrap;
}

.cashflow-table tfoot td {
  background: #f8fbff;
  font-weight: 700;
}

.cashflow-money {
  text-align: right;
  white-space: nowrap;
}

.cashflow-empty {
  text-align: center;
  font-weight: 700;
  color: #697586;
}

.document-link {
  position: relative;
  width: 38px;
  height: 46px;
  min-height: 46px;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  border: 1px solid #b8c7d9;
  border-radius: 5px;
  padding: 0 3px 6px;
  background: #ffffff;
  color: #475467;
  text-decoration: none;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 3px 8px rgba(31, 41, 51, 0.1);
  overflow: hidden;
}

.document-link::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 13px;
  height: 13px;
  border-left: 1px solid #b8c7d9;
  border-bottom: 1px solid #b8c7d9;
  background: #eef4fb;
}

.document-link span {
  position: relative;
  z-index: 1;
  max-width: 30px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.document-link:hover {
  border-color: #1b5faa;
  background: #e2efff;
}

.document-link-pdf {
  border-color: #dc6a6a;
  color: #a33a3a;
}

.document-link-doc {
  border-color: #6a9edc;
  color: #1b5faa;
}

.document-link-xls {
  border-color: #68b684;
  color: #1f7a3f;
}

.document-link-jpg,
.document-link-png {
  border-color: #b084d8;
  color: #6f3da8;
}

.document-link-zip {
  border-color: #d69b45;
  color: #9a5d11;
}

.document-link-drive {
  border-color: #6a9edc;
  color: #1f7a3f;
}

.document-link-icon {
  width: 34px;
  height: 34px;
  min-height: 34px;
  align-items: center;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  box-shadow: none;
}

.document-link-icon::before {
  content: none;
}

.document-link-icon img {
  display: block;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.document-link-icon:hover {
  background: #eef4fb;
}

.cashflow-balance {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 16px 18px;
  background: #f8fbff;
  font-size: 18px;
}

.cashflow-balance span,
.cashflow-balance strong {
  font-weight: 700;
}

@media (max-width: 499px) {
  .cashflow-balance {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    font-size: 16px;
  }
}

.object-form {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
}

.object-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.object-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.object-field-wide {
  grid-column: 1 / -1;
}

.object-radio-field {
  border: 0;
  margin: 0;
  padding: 0;
}

.object-radio-field legend {
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 700;
}

.radio-option {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 20px;
  font-weight: 700;
  cursor: pointer;
}

.radio-option input {
  width: auto;
  min-height: 0;
}

.report-settings {
  max-width: 980px;
  margin-right: auto;
  margin-left: auto;
  display: grid;
  grid-template-columns: minmax(160px, 220px) 1fr 1fr auto;
  align-items: end;
  gap: 18px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 20px;
  background: #f8fbff;
}

.report-settings-group {
  min-height: 52px;
}

.report-settings-group label,
.report-radio-block legend {
  font-size: 15px;
  font-weight: 700;
}

.report-settings-group label {
  display: block;
  margin-bottom: 8px;
}

.report-radio-block {
  margin: 0;
}

.report-action-block {
  display: flex;
  align-items: end;
  gap: 10px;
}

.report-action-block button {
  min-width: 150px;
}

.report-action-block .report-xls-download {
  min-width: 42px;
}

.loading-registry-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.loading-registry-button {
  min-width: 210px;
  padding: 10px 18px;
}

.loading-registry-file-control {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.loading-registry-file-name {
  display: flex;
  max-width: 210px;
  min-height: 20px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
  text-align: center;
}

.loading-registry-message {
  margin-top: 18px;
}

.loading-registry-table-wrap {
  width: 100%;
  max-height: 62vh;
  margin-top: 22px;
  overflow: auto;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #ffffff;
}

.loading-registry-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.loading-registry-table th,
.loading-registry-table td {
  max-width: 360px;
  border: 1px solid #dbe3ee;
  padding: 8px 10px;
  overflow-wrap: anywhere;
  text-align: left;
  vertical-align: top;
}

.loading-registry-table th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #1b5faa;
  color: #ffffff;
  font-weight: 700;
}

.loading-registry-table tr:nth-child(even) td {
  background: #f8fbff;
}

.report-search {
  width: 50%;
  
  margin: 24px auto 0;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 20px;
  background: #e2e6ec;
}

.report-search-title {
  margin-bottom: 14px;
  font-size: 18px;
  font-weight: 700;
}

.report-search-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.report-download {
  max-width: 490px;
  margin: 14px auto 0;
  text-align: center;
}

.excel-download-button {
  position: relative;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  border-radius: 6px;
  padding: 0;
  background: #1f7a3f;
  box-shadow: 0 8px 18px rgba(31, 122, 63, 0.22);
}

.excel-download-button::before {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.excel-download-button span {
  display: block;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
}

.excel-download-button:hover {
  background: #176332;
}

.object-report {
  width: 100%;
  margin: 24px auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.object-report-card {
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
}

.object-report-card h2,
.object-report-year h3 {
  margin: 0;
  line-height: 1.25;
}

.object-report-card h2 {
  font-size: 22px;
}

.object-report-zamovnik {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 700;
}

.object-report-edrpou {
  margin-top: 6px;
  font-size: 15px;
  font-weight: 700;
}

.object-report-year {
  margin-top: 18px;
  border-top: 1px solid #dbe3ee;
  padding-top: 16px;
}

.object-report-year h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.object-report-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  padding: 8px 0;
  line-height: 1.4;
}

.object-report-row + .object-report-row {
  border-top: 1px solid #eef2f7;
}

.object-report-row-number {
  font-weight: 700;
}

.object-report-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #ffffff;
}

.object-report-table {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
  font-size: 14px;
}

.object-report-table th,
.object-report-table td {
  border-bottom: 1px solid #e6edf5;
  border-right: 1px solid #e6edf5;
  padding: 9px 10px;
  vertical-align: top;
  text-align: left;
}

.object-report-table th:last-child,
.object-report-table td:last-child {
  border-right: 0;
}

.object-report-table th {
  background: #eef4fb;
  font-weight: 700;
  white-space: nowrap;
}

.object-report-table-number {
  width: 54px;
  text-align: center;
  font-weight: 700;
}

.object-report-table-obiekt {
  min-width: 210px;
  font-weight: 700;
}

.object-report-table-money {
  text-align: right;
  white-space: nowrap;
}

.object-form-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 22px;
}

.object-form-actions button {
  min-width: 150px;
}

.prozorro-upload {
  width: 100%;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.prozorro-upload-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.prozorro-upload-button {
  min-width: 280px;
  padding: 0 18px;
}

.prozorro-hide-signed-button {
  min-width: 180px;
  padding: 0 18px;
}

.prozorro-hide-signed-button.is-active {
  background: #315f9f;
}

.prozorro-upload-file {
  min-height: 22px;
  color: #475467;
  font-size: 15px;
  font-weight: 700;
  word-break: break-word;
}

.prozorro-upload-message {
  max-width: 520px;
  margin-top: 18px;
}

.prozorro-report-filters {
  width: 100%;
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 18px;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  padding: 18px;
  background: #f8fbff;
}

.prozorro-report-filter {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prozorro-report-wrap {
  width: 100%;
  margin-top: 24px;
  overflow-x: auto;
  border: 1px solid #dbe3ee;
  border-radius: 8px;
  background: #ffffff;
}

.prozorro-report-table {
  width: 100%;
  min-width: 1090px;
  border-collapse: collapse;
  font-size: 14px;
}

.prozorro-report-table th,
.prozorro-report-table td {
  border-bottom: 1px solid #e6edf5;
  border-right: 1px solid #e6edf5;
  padding: 10px 12px;
  vertical-align: top;
  text-align: left;
}

.prozorro-report-table th:last-child,
.prozorro-report-table td:last-child {
  border-right: 0;
}

.prozorro-report-table tr:last-child td {
  border-bottom: 0;
}

.prozorro-report-table th {
  background: #eef4fb;
  font-weight: 700;
  white-space: nowrap;
}

.prozorro-report-row.is-checked td,
.prozorro-report-row:has(.prozorro-report-checkbox:checked) td {
  background: #e7f7ed;
}

.prozorro-report-status {
  width: 72px;
  text-align: center;
}

.prozorro-report-add {
  width: 158px;
  text-align: center;
  white-space: nowrap;
}

.prozorro-add-button,
.prozorro-edit-button,
.prozorro-cancel-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  min-height: 30px;
  border-radius: 6px;
  background: #1f7a4d;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.prozorro-edit-button,
.prozorro-cancel-button {
  margin-left: 6px;
}

.prozorro-edit-button {
  background: #315f9f;
  font-size: 16px;
}

.prozorro-cancel-button {
  border: 0;
  background: #c62828;
  font-size: 16px;
  cursor: pointer;
}

.prozorro-add-button:hover,
.prozorro-add-button:focus-visible {
  background: #17643e;
}

.prozorro-edit-button:hover,
.prozorro-edit-button:focus-visible {
  background: #244b82;
}

.prozorro-cancel-button:hover,
.prozorro-cancel-button:focus-visible {
  background: #a61f1f;
}

.prozorro-cancel-button:disabled {
  cursor: default;
  opacity: 0.75;
}

.prozorro-cancel-button.is-saved {
  background: #7f1d1d;
}

.prozorro-report-row.is-canceled td {
  background: #fff1f1;
}

.prozorro-report-id {
  white-space: nowrap;
}

.prozorro-report-checkbox {
  width: 18px;
  min-height: 18px;
  cursor: pointer;
}

.prozorro-filter-empty {
  margin-top: 18px;
}

.menu-footer {
  bottom: 0;
  min-height: 48px;
  border-top: 1px solid #dbe3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 700;
}

.menu-footer-text {
  text-align: center;
}

.menu-footer-top-button {
  position: absolute;
  right: 24px;
  min-height: 34px;
  border-radius: 6px;
  padding: 7px 14px;
  font-size: 14px;
}

@media (max-width: 889px) {
  .menu-title {
    font-size: 15px;
  }

  .menu-user-login {
  font-size: 14px;
  }

  .menu-button-back,
  .menu-button-home,
  .menu-button-exit,
  .menu-footer-top-button {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    overflow: hidden;
    color: transparent;
    font-size: 0;
    background-color: transparent;
    background-size: 28px 28px;
  }

  .menu-button-back,
  .menu-button-home,
  .menu-button-exit {
    background-size: 22px 22px;
  }

  .menu-button-back {
    background-image: url("/img/return.png");
  }

  .menu-button-home {
    background-image: url("/img/main.png");
  }

  .menu-button-exit {
    background-image: url("/img/exit.png");
  }

  .menu-footer-top-button {
    background-image: url("/img/up.png");
  }

  .menu-button-back:hover,
  .menu-button-home:hover,
  .menu-button-exit:hover,
  .menu-footer-top-button:hover {
    background-color: #eef4fb;
  }
}

@media (max-width: 760px) {
  .menu-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
    padding: 12px 18px;
  }

  .menu-title {
    white-space: normal;
  }

  .menu-user-panel {
    width: 100%;
    justify-content: flex-start;
  }

  .menu-body {
    padding: 158px 18px 72px;
  }

  .object-form-grid {
    grid-template-columns: 1fr;
  }

  .report-object-form {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .payments-report-summary {
    grid-template-columns: 1fr;
  }

  .gotivka-report-form {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .gotivka-report-period {
    align-items: stretch;
    flex-direction: column;
  }

  .gotivka-report-period-grid {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .gotivka-report-actions {
    justify-content: flex-start;
  }

  .report-object-field {
    grid-column: auto;
  }

  .report-settings {
    grid-template-columns: 1fr;
  }

  .report-search-controls {
    grid-template-columns: 1fr;
  }

  .report-search {
    width: 100%;
    min-width: 0;
  }

  .prozorro-report-filters {
    grid-template-columns: 1fr;
  }
}
