.module-page {
  width: 100%;
}

.module-page--wide {
  max-width: 1600px;
}

.module-form {
  display: grid;
  gap: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.25rem;
}

.module-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.module-table {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: white;
}

.mtv-navigation {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  align-items: center;
  padding: 0.75rem 0;
}

.mtv-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: 0.4rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
}

.mtv-nav-link--back {
  background: #e5e7eb;
  color: #1f2937;
}

.mtv-nav-link--report {
  background: #f59e0b;
  color: white;
}

.mtv-nav-link--home {
  background: #2563eb;
  color: white;
}

@media (max-width: 640px) {
  .mtv-navigation {
    flex-direction: column;
    align-items: stretch;
    justify-content: initial;
  }

  .mtv-nav-link {
    width: 100%;
  }
}
