/* Big Bamb 共通スタイル（単一CSSファイル） */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  color: #1d1d1f;
  background-color: #f5f5f7;
  line-height: 1.6;
}

a {
  color: #0f62fe;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.admin-body {
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.admin-shell {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: 32px 16px;
}

.admin-header,
.admin-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.admin-logo {
  font-weight: 600;
  font-size: 20px;
}

.admin-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 0;
}

.admin-login-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.admin-login-card {
  width: 100%;
  max-width: 400px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.admin-login-title {
  margin: 0 0 24px;
  font-size: 24px;
}

.admin-alert-error {
  margin-bottom: 16px;
  padding: 12px 16px;
  background-color: #ffe5e5;
  color: #c11818;
  border-radius: 12px;
  font-size: 14px;
}

.admin-alert-success {
  margin-bottom: 16px;
  padding: 12px 16px;
  background-color: #e5f5e8;
  color: #1b7f3a;
  border-radius: 12px;
  font-size: 14px;
}

.form-group {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
}

.form-group input {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d2d2d7;
  font-size: 14px;
  outline: none;
  background-color: #f9f9fb;
}

.form-group input:focus {
  border-color: #0f62fe;
  box-shadow: 0 0 0 1px rgba(15, 98, 254, 0.2);
  background-color: #ffffff;
}

.form-actions {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.btn-primary {
  min-width: 120px;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #0f62fe, #2f6bff);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(15, 98, 254, 0.35);
}

.btn-primary:hover {
  opacity: 0.92;
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 6px 18px rgba(15, 98, 254, 0.35);
}

.admin-dashboard {
  width: 100%;
  max-width: 800px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 24px 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.admin-dashboard-title {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 22px;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  margin-top: 16px;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.table th,
.table td {
  padding: 8px 12px;
  border-bottom: 1px solid #e5e5ea;
  text-align: left;
}

.table th {
  font-weight: 600;
  background-color: #f5f5f7;
}

.pagination {
  margin-top: 16px;
  display: flex;
  gap: 8px;
}

.pagination .page {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid #d2d2d7;
  font-size: 13px;
}

.pagination .page.current {
  background-color: #0f62fe;
  color: #ffffff;
  border-color: #0f62fe;
}

.user-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 16px;
}

.user-detail-grid dl {
  margin: 0;
}

.user-detail-grid dt {
  font-size: 13px;
  color: #555;
  margin-top: 8px;
}

.user-detail-grid dd {
  margin: 0;
  font-size: 14px;
}

.page-links {
  margin-top: 24px;
  font-size: 14px;
}

.clickable-row {
  cursor: pointer;
}

 .stock-chart-wrapper {
  margin-top: 24px;
}

/* =========================================================
   フロント共通レイアウト（ヘッダー / メニュー / フッター）
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo {
  display: block;
  height: 32px;
}

.mypage-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f7, #ffffff);
}

.mypage-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.mypage-icon .fa-bars,
.slide-mypage-icon .fa-bars {
  color: #86868b;
  font-size: 16px;
  line-height: 1;
}

.slide-mypage-icon .fa-bars {
  font-size: 18px;
}

/* スライドメニュー */
.slide-menu {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  height: 100vh;
  overflow-y: auto;
  background-color: #ffffff;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.08);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: right 0.25s ease-out;
  z-index: 110;
}

.slide-menu.open {
  right: 0;
}

.slide-profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slide-mypage-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f5f5f7, #ffffff);
  cursor: pointer;
}

.slide-mypage-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 999px;
}

.slide-username {
  font-size: 15px;
  font-weight: 600;
}

.slide-menu nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.slide-menu nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 8px 12px;
  border-radius: 12px;
  color: #1d1d1f;
  text-decoration: none;
}

.slide-menu nav li a i {
  width: 20px;
  text-align: center;
  color: #555555;
}

.slide-menu nav li a:hover,
.slide-menu nav li a.is-active {
  background-color: #f5f5f7;
}

.slide-menu nav li a.is-active {
  font-weight: 600;
}

.slide-menu nav li a.is-active i {
  color: #0f62fe;
}

/* オーバーレイ */
.overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
  z-index: 105;
}

.overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* メインコンテンツ */
main {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

@media (min-width: 768px) {
  main {
    padding: 32px 24px 48px;
  }
}

/* ログイン案内（トップ用） */
.login-prompt-simple {
  margin: 24px auto 0;
  max-width: 480px;
  padding: 24px 16px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.line-login-button-simple {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background-color: #06c755;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

.line-login-button-simple svg {
  display: block;
}

.line-login-button-simple span {
  line-height: 1;
}

/* フッター */
.site-footer {
  padding: 16px 16px 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  font-size: 13px;
  color: #555555;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}

.footer-menu a {
  font-size: 13px;
}

.footer-copy a {
  color: inherit;
}

/* ----- テンプレ：インライン廃止用（単一CSSへ集約） ----- */

.login-line-btn-wrap {
  text-align: center;
}

.landing-main {
  padding: 24px;
  max-width: 36rem;
  margin: 0 auto;
}

.alert-error {
  color: #b00020;
  line-height: 1.6;
}

body.page-line-friend {
  padding: 32px;
  max-width: 32rem;
  margin: 0 auto;
}

/* =========================================================
   部屋作業リスト
   ========================================================= */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.work-app {
  padding-bottom: 88px;
}

.work-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #1d1d1f;
}

.work-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

.work-main h1 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.3;
}

.work-main h2 {
  margin: 32px 0 16px;
  font-size: 20px;
}

.work-lead {
  margin: 0 0 24px;
  color: #333333;
  line-height: 1.7;
}

.work-month-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.work-month-tabs__item {
  min-height: 48px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  color: #1d1d1f;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.work-month-tabs__item.is-active {
  background: #1d1d1f;
  color: #ffffff;
}

.work-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}

.work-stat-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.work-stat-card__label,
.work-stat-card__sub {
  margin: 0;
  font-size: 12px;
  color: #555555;
}

.work-stat-card__value {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 700;
}

.work-review {
  margin: 0 0 24px;
  border-radius: 16px;
  background: #e8f1ff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.work-review__head {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 72px;
  padding: 16px;
  color: inherit;
  text-decoration: none;
}

.work-review__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ffffff;
  color: #0f62fe;
  flex-shrink: 0;
}

.work-review__text {
  flex: 1;
  min-width: 0;
}

.work-review__text strong {
  display: block;
  font-size: 18px;
  color: #1d1d1f;
}

.work-review__text > span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
}

.work-review__form {
  display: grid;
  gap: 16px;
  padding: 0 16px 16px;
}

.work-review__toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
}

.work-review__month {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  font-size: 13px;
  color: #555555;
}

.work-review__month input {
  width: 11em;
  max-width: 100%;
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid #e5e5ea;
  border-radius: 12px;
  background: #ffffff;
  font-size: 16px;
}

.work-review__all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  white-space: nowrap;
}

.work-review__all input {
  width: 20px;
  height: 20px;
  margin: 0;
}

.work-review-rooms {
  list-style: none;
  margin: 0;
  padding: 0;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
}

.work-review-room {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 12px 16px;
}

.work-review-room + .work-review-room {
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.06);
}

.work-review-room__check {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
  min-height: 48px;
}

.work-review-room__check input {
  width: 20px;
  height: 20px;
  margin: 0;
  flex-shrink: 0;
}

.work-review-room__text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.work-review-room__text strong {
  font-size: 16px;
  color: #1d1d1f;
}

.work-review-room__text span {
  font-size: 13px;
  color: #555555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.work-review-room__photos {
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex-shrink: 0;
  max-width: 40%;
  overflow-x: auto;
}

.work-review-room__photos a {
  display: block;
}

.work-review-room__photos img {
  display: block;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f5f7;
}

.work-review .admin-alert-success,
.work-review .admin-alert-error,
.work-review .work-empty-inline {
  margin: 0 16px 16px;
}

.work-review__actions {
  position: static;
}

.work-review__actions .btn-primary {
  width: 100%;
  min-height: 48px;
}

.work-search,
.work-filter,
.work-bulk,
.work-login-card,
.work-property-card,
.work-room-card,
.work-ops-card,
.work-bulletin-card,
.work-dash-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.work-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 16px;
  margin-bottom: 32px;
}

.work-search input[type="search"] {
  flex: 1;
  min-height: 48px;
  border: 0;
  background: transparent;
  font-size: 16px;
}

.work-pref-list,
.work-property-list,
.work-room-list,
.work-ops-list,
.work-bulletin {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-pref-card,
.work-property-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: #1d1d1f;
  text-decoration: none;
}

.work-property-card__main {
  display: block;
  flex: 1;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.work-property-card__main:hover {
  text-decoration: none;
}

.work-maps-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 600;
}

.work-maps-link--icon {
  flex: 0 0 48px;
  width: 48px;
  margin-top: 0;
  border-radius: 12px;
  background: #f5f5f7;
  color: #0f62fe;
}

.work-room-card__meta .work-maps-link {
  display: inline-flex;
  margin: 8px 0 0;
}

.work-pref-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.work-pref-card__name {
  font-weight: 600;
  min-width: 72px;
}

.work-pref-card__meta {
  flex: 1;
  color: #555555;
  font-size: 14px;
}

.work-filter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 16px;
  margin-bottom: 16px;
}

.work-filter label,
.work-bulk label,
.work-room-card label,
.work-ops-form label,
.work-login-form label,
.work-composer label,
.work-bulletin-card label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: #555555;
}

.work-filter select,
.work-filter input:not([type="checkbox"]):not([type="radio"]),
.work-bulk input,
.work-bulk select,
.work-room-card input,
.work-room-card select,
.work-ops-form input,
.work-ops-form select,
.work-ops-form textarea,
.work-login-form input,
.work-composer input,
.work-composer select,
.work-composer textarea,
.work-bulletin-card input,
.work-bulletin-card select,
.work-bulletin-card textarea {
  width: 100%;
  min-height: 48px;
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid #e5e5ea;
  background: #f9f9fb;
  font-size: 16px;
}

.work-filter__search {
  grid-column: 1 / -1;
}

.work-filter label.work-filter__check,
.work-room-card label.work-filter__check,
label.work-filter__check {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: end;
  gap: 8px;
  min-height: 48px;
  color: #1d1d1f;
}

.work-filter input[type="checkbox"],
.work-filter input[type="radio"],
.work-room-card input[type="checkbox"],
.work-filter__check input[type="checkbox"] {
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  accent-color: #0f62fe;
}

.work-js .work-filter__submit {
  display: none;
}

.work-property-card[hidden],
.work-empty-inline[hidden] {
  display: none !important;
}

.work-count {
  margin: 0 0 16px;
  color: #555555;
  font-size: 14px;
}

.work-property-card__top,
.work-room-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.work-room-card__title {
  min-width: 0;
}

.work-room-card__title .work-property-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}

.work-room-card__date {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin: 0;
  font-size: 12px;
  color: #555555;
}

.work-room-card__date input {
  width: 10.5em;
  min-height: 48px;
}

.work-property-card h2,
.work-property-card h3,
.work-room-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
}

.work-property-card__meta,
.work-property-card__dates,
.work-property-card__address,
.work-property-card__facts,
.work-room-card__meta {
  margin: 4px 0 0;
  font-size: 13px;
  color: #555555;
}

.work-property-card__facts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
}

.work-property-card__address {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.work-property-card__rooms {
  margin: 8px 0 0;
  font-weight: 600;
}

.work-property-card--need-date {
  background: #fff8f0;
}

.work-property-card--done {
  background: #f3faf6;
}

.work-property-card__undated {
  margin-left: 8px;
  color: #8a6d00;
  font-weight: 600;
}

.work-property-card__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.work-count .work-tag {
  margin-left: 8px;
  vertical-align: middle;
}

.work-tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  font-size: 12px;
  background: #f5f5f7;
  color: #333333;
}

.work-tag--pre_install { background: #e8f1ff; color: #0f62fe; }
.work-tag--after_switch { background: #fff4d6; color: #8a6d00; }
.work-tag--no_install { background: #f1f1f3; color: #666666; }
.work-tag--remove_existing { background: #ffece5; color: #c11818; }
.work-tag--meter_check { background: #e9f8ef; color: #1b7f3a; }
.work-tag--add,
.work-tag--gw { background: #e8f1ff; color: #0f62fe; }

.work-back {
  margin: 0 0 16px;
}

.work-back a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 8px;
}

.work-property-head {
  margin: 0 0 24px;
}

.work-property-head__addr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 16px;
  color: #333333;
  line-height: 1.5;
}

.work-property-head__addr .work-maps-link {
  margin: 0;
  flex-shrink: 0;
}

.work-property-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-property-facts li {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  font-size: 14px;
  color: #1d1d1f;
}

.work-property-facts li > span:first-child {
  flex-shrink: 0;
  font-size: 12px;
  color: #555555;
}

.work-def {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 0 24px;
}

.work-def dt {
  font-size: 12px;
  color: #555555;
}

.work-def dd {
  margin: 4px 0 0;
}

.work-note {
  padding: 16px;
  border-radius: 12px;
  background: #fff6e5;
  color: #333333;
}

.work-note--small {
  margin: 8px 0;
  padding: 8px 12px;
  font-size: 13px;
}

.work-bulk {
  padding: 16px;
  margin-bottom: 24px;
}

.work-bulk h2,
.work-ops-card summary,
.work-bulletin-card h2,
.work-bulletin-card h3 {
  margin: 0 0 16px;
  font-size: 16px;
}

.work-bulk__hint {
  margin: 0 0 16px;
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
}

.work-choice {
  margin: 0;
  padding: 0;
  border: 0;
}

.work-choice legend {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
}

.work-choice__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin: 0 0 8px;
  padding: 8px 16px;
  border-radius: 12px;
  background: #f5f5f7;
  color: #1d1d1f;
  font-size: 16px;
  cursor: pointer;
}

.work-ops-form .work-choice__item {
  flex-direction: row;
  align-items: center;
  color: #1d1d1f;
}

.work-choice__item:last-child {
  margin-bottom: 0;
}

.work-choice__item input,
.work-ops-form .work-choice__item input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  padding: 0;
  flex-shrink: 0;
}

.work-choice__item:has(input:checked) {
  background: #eaf2ff;
}

.work-choice-date {
  margin-top: 8px;
}

.work-bulk__row,
.work-room-card__fields,
.work-ops-grid {
  display: grid;
  gap: 16px;
}

.work-room-card,
.work-bulletin-card,
.work-ops-card {
  padding: 16px;
}

.work-ops-card summary {
  cursor: pointer;
  list-style: none;
  min-height: 48px;
}

.work-ops-card summary::-webkit-details-marker {
  display: none;
}

.work-ops-card__title {
  display: block;
  font-weight: 700;
}

.work-ops-card__sub,
.work-ops-address {
  display: block;
  color: #555555;
  font-size: 13px;
}

.work-ops-form {
  display: grid;
  gap: 16px;
  margin-top: 16px;
}

.work-ops-month {
  margin: 8px 0 0;
  font-size: 16px;
  color: #1d1d1f;
}

.work-ops-notice textarea {
  min-height: 96px;
}

.work-sticky-save {
  position: sticky;
  bottom: 88px;
  padding: 16px 0;
}

.work-sticky-save .btn-primary,
.work-ops-form .btn-primary,
.work-login-form .btn-primary,
.work-bulk .btn-primary,
.work-filter .btn-primary,
.work-search .btn-primary,
.work-photo-upload .btn-secondary,
.work-complete-form .btn-complete,
.work-complete-form .btn-secondary {
  min-height: 48px;
  width: 100%;
}

.work-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #ffffff;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.06);
}

.work-bottom-nav__item {
  min-height: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #555555;
  font-size: 11px;
  text-decoration: none;
}

.work-bottom-nav__item.is-active {
  color: #0f62fe;
}

.work-footer {
  margin-bottom: 8px;
}

.work-empty {
  padding: 24px 0;
  color: #555555;
}

.work-login-main {
  display: grid;
  gap: 24px;
}

.work-login-card {
  padding: 24px;
}

.work-login-form {
  display: grid;
  gap: 16px;
}

.work-toast.is-error {
  background: #6e2a2a;
}

.work-bulk[hidden] {
  display: none !important;
}

form[data-ajax="property"][aria-busy="true"] {
  pointer-events: none;
  opacity: 0.72;
}

.work-property-card--static {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 8px;
}

.work-summary-table th:not(:first-child),
.work-summary-table td:not(:first-child) {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.work-summary-table tfoot th {
  background: #f5f5f7;
  font-weight: 700;
}

.work-composer,
.work-hub-add {
  padding: 16px;
  margin-bottom: 24px;
}

.work-composer form,
.work-bulletin-card form {
  display: grid;
  gap: 16px;
}

.work-composer textarea,
.work-bulletin-card textarea {
  min-height: 160px;
  padding: 12px;
  resize: vertical;
}

.work-inline-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.work-inline-actions .btn-primary,
.work-status-box .btn-primary {
  width: auto;
  min-width: 120px;
}

.work-btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 10px 16px;
  border: 0;
  border-radius: 999px;
  background: #ffe5e5;
  color: #c11818;
  font-weight: 600;
  cursor: pointer;
}

.work-share-link {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin: 0 0 16px;
}

.work-share-link a {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  gap: 8px;
}

.work-ops-form h3 {
  margin: 0;
  font-size: 16px;
}

.work-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  width: 100%;
  border-radius: 12px;
  background: #06c755;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.work-line-btn:hover {
  color: #ffffff;
  text-decoration: none;
  opacity: 0.94;
}

.work-line-btn i {
  font-size: 22px;
}

.work-login-id-wrap {
  margin: 0;
  text-align: center;
}

.work-login-id-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  color: #888888;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

.work-login-switch {
  margin-top: 8px;
  text-align: center;
}

.work-login-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  color: #0071e3;
  text-decoration: none;
}

.work-bulletin-body {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.7;
  color: #333333;
}

.work-bulletin-card h2,
.work-bulletin-card h3 {
  margin: 0 0 12px;
  font-size: 1.125rem;
}

.work-page-head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.work-page-head .work-lead {
  margin-bottom: 0;
}

.work-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: #1d1d1f;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

.work-add-btn:hover {
  opacity: 0.92;
}

.work-reveal {
  display: grid;
  gap: 16px;
}

.work-reveal__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: #f5f5f7;
  color: #1d1d1f;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.work-reveal__btn::-webkit-details-marker {
  display: none;
}

.work-reveal__btn i {
  display: inline-flex;
  transition: transform 0.16s ease;
}

.work-reveal[open] .work-reveal__btn i {
  transform: rotate(45deg);
}

.work-list-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.work-list-meta .work-count {
  margin: 0;
}

.work-clear-search {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.work-person-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-person-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: #1d1d1f;
  text-decoration: none;
}

.work-person-card:hover {
  text-decoration: none;
}

.work-avatar {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  color: #0f62fe;
  font-weight: 700;
  font-size: 18px;
}

.work-avatar--lg {
  width: 64px;
  height: 64px;
  flex-basis: 64px;
  font-size: 24px;
}

.work-person-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.work-person-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.work-person-card__top h2,
.work-profile-head h1 {
  margin: 0;
}

.work-person-card__kana {
  display: block;
  margin: 0;
  font-size: 13px;
  color: #555555;
}

.work-person-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #555555;
}

.work-person-card__chevron {
  color: #c7c7cc;
  font-size: 12px;
}

.work-tag--ok {
  background: #e9f8ef;
  color: #1b7f3a;
}

.work-tag--warn {
  background: #fff4d6;
  color: #8a6d00;
}

.work-tag--stop {
  background: #ffece5;
  color: #c11818;
}

.work-person-card--off {
  opacity: 0.72;
}

.work-tag--wait {
  background: #e8f1ff;
  color: #0f62fe;
}

.work-empty-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 48px 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  color: #555555;
}

.work-empty-card i {
  font-size: 32px;
  color: #c7c7cc;
}

.work-empty-card p {
  margin: 0;
  line-height: 1.7;
}

.work-empty-card .btn-primary {
  width: auto;
  min-width: 160px;
}

.work-profile-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.work-profile-head__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0;
}

.work-ops-form .work-section-title {
  margin: 8px 0 0;
  font-size: 16px;
}

.work-form-hint {
  margin: 0;
  font-size: 13px;
  color: #555555;
  line-height: 1.6;
}

.work-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.work-section-head h2 {
  margin: 0;
}

.work-section-head .work-count {
  margin: 0;
}

.work-section-head__link {
  font-size: 14px;
  font-weight: 600;
  color: #0f62fe;
  text-decoration: none;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}

.work-hero {
  margin: 0 0 24px;
}

.work-safety-banner {
  margin: 0 0 24px;
  padding: 24px 16px;
  border-radius: 16px;
  background: #fff4d6;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.work-safety-banner__label {
  margin: 0 0 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 700;
  color: #8a6d00;
}

.work-safety-banner__text {
  margin: 0 0 16px;
  color: #333333;
  line-height: 1.7;
  white-space: pre-wrap;
}

.work-safety-banner__btn {
  width: 100%;
  min-height: 64px;
  font-size: 18px;
}

.work-safety-card {
  padding: 16px;
  margin-bottom: 16px;
}

.work-safety-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.work-safety-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 8px 0;
}

.work-safety-list__item.is-ok {
  color: #1b7f3a;
}

.work-notice-item__body {
  white-space: pre-wrap;
  line-height: 1.7;
}

.work-hero__hello {
  margin: 0 0 8px;
  font-size: 14px;
  color: #555555;
}

.work-hero h1 {
  margin: 0 0 8px;
  font-size: 28px;
  line-height: 1.3;
}

.work-kpi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 24px;
}

.work-kpi {
  display: block;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: inherit;
  text-decoration: none;
}

a.work-kpi:hover {
  text-decoration: none;
}

.work-kpi__label,
.work-kpi__sub {
  margin: 0;
  font-size: 12px;
  color: #555555;
}

.work-kpi__value {
  margin: 8px 0 0;
  font-size: 24px;
  font-weight: 700;
  color: #1d1d1f;
}

.work-dash-card {
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.work-dash-card h2 {
  margin: 0 0 16px;
  font-size: 16px;
}

.work-dash-card .work-section-head h2 {
  margin: 0;
}

.work-dash-card__note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: #555555;
}

.work-empty-inline {
  margin: 0;
  color: #555555;
  font-size: 14px;
  line-height: 1.6;
}

.work-meter {
  height: 8px;
  border-radius: 999px;
  background: #f0f0f2;
  overflow: hidden;
}

.work-meter__bar,
.work-bars__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: #0f62fe;
}

.work-bars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.work-bars li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 64px;
  gap: 8px;
  align-items: center;
}

.work-bars__label,
.work-bars__value {
  font-size: 13px;
  color: #555555;
}

.work-bars__value {
  text-align: right;
}

.work-bars__track {
  height: 8px;
  border-radius: 999px;
  background: #f0f0f2;
  overflow: hidden;
}

.work-timeline,
.work-notice-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.work-timeline a,
.work-notice-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 48px;
  padding: 12px 0;
  color: inherit;
  text-decoration: none;
}

.work-timeline a:hover,
.work-notice-item:hover {
  text-decoration: none;
}

.work-timeline__date {
  flex: 0 0 88px;
  font-size: 13px;
  font-weight: 600;
  color: #0f62fe;
}

.work-timeline__body,
.work-notice-item span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.work-timeline__body strong,
.work-notice-item strong {
  font-size: 15px;
  color: #1d1d1f;
}

.work-timeline__body span,
.work-notice-item span span {
  font-size: 13px;
  color: #555555;
  line-height: 1.5;
}

.work-notice-item i {
  width: 20px;
  margin-top: 2px;
  text-align: center;
  color: #0f62fe;
}

.work-notice-item--warn i {
  color: #c11818;
}

.work-notice-item em {
  font-style: normal;
  font-size: 12px;
  color: #888888;
}

.work-notice-list--page .work-notice-item {
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.work-settings-form {
  margin-top: 16px;
}

.work-settings-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin-top: 8px;
  color: #1d1d1f;
  text-decoration: none;
  font-weight: 600;
}

.work-settings-link .fa-chevron-right {
  margin-left: auto;
  color: #888888;
}

.work-w-0 { width: 0; }
.work-w-5 { width: 5%; }
.work-w-10 { width: 10%; }
.work-w-15 { width: 15%; }
.work-w-20 { width: 20%; }
.work-w-25 { width: 25%; }
.work-w-30 { width: 30%; }
.work-w-35 { width: 35%; }
.work-w-40 { width: 40%; }
.work-w-45 { width: 45%; }
.work-w-50 { width: 50%; }
.work-w-55 { width: 55%; }
.work-w-60 { width: 60%; }
.work-w-65 { width: 65%; }
.work-w-70 { width: 70%; }
.work-w-75 { width: 75%; }
.work-w-80 { width: 80%; }
.work-w-85 { width: 85%; }
.work-w-90 { width: 90%; }
.work-w-95 { width: 95%; }
.work-w-100 { width: 100%; }

.work-assign-section {
  margin-top: 32px;
}

.work-assign-section .work-month-tabs {
  margin-bottom: 16px;
}

.work-status-box,
.work-danger-box {
  margin-top: 32px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.work-status-box .work-section-title {
  margin: 0 0 8px;
}

.work-status-box p {
  margin: 0 0 16px;
  color: #555555;
  font-size: 14px;
  line-height: 1.7;
}

.work-status-box--stop {
  background: #fff8f5;
}

.work-danger-box summary {
  min-height: 48px;
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #c11818;
  font-weight: 600;
}

.work-danger-box p {
  margin: 0 0 16px;
  color: #555555;
  font-size: 14px;
  line-height: 1.7;
}

body.work-sheet-open {
  overflow: hidden;
}

.btn-secondary,
.btn-complete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  min-width: 120px;
  padding: 10px 16px;
  border-radius: 999px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.btn-secondary {
  background: #f5f5f7;
  color: #1d1d1f;
}

.btn-complete {
  background: #1b7f3a;
  color: #ffffff;
}

.btn-complete:disabled {
  background: #d2d2d7;
  color: #86868b;
  cursor: not-allowed;
}

.work-property-section {
  margin: 0 0 32px;
}

.work-property-section .work-section-head {
  margin-bottom: 16px;
}

.work-schedule-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-schedule-card {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 8px 12px;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: inherit;
  text-decoration: none;
}

.work-schedule-card:hover {
  text-decoration: none;
}

.work-schedule-card--need {
  background: #fffaf0;
}

.work-schedule-card--wait {
  background: #f7fbff;
}

.work-schedule-card--ok {
  background: #f3faf6;
}

.work-schedule-card__room {
  flex: 0 0 auto;
  min-width: 56px;
  font-size: 14px;
  font-weight: 700;
  color: #1d1d1f;
}

.work-schedule-card__body {
  flex: 1;
  min-width: 0;
}

.work-schedule-card__name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1d1d1f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.work-schedule-card__sub {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
  font-size: 12px;
  color: #555555;
}

.work-schedule-card__sub .work-tag {
  font-size: 11px;
}

.work-schedule-card__date {
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 700;
  color: #1d1d1f;
}

.work-schedule-card__date.is-empty {
  font-size: 13px;
  font-weight: 600;
  color: #8a6d00;
}

.work-schedule-card__more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 600;
  color: #0f62fe;
}

.work-room-card--done {
  background: #f7fbff;
}

.work-room-card--admin-done {
  background: #f3faf6;
}

.work-photo-block {
  margin-top: 16px;
}

.work-photo-block h4 {
  margin: 0 0 12px;
  font-size: 14px;
  color: #1d1d1f;
}

.work-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
}

.work-photo-grid li {
  position: relative;
}

.work-photo-grid img {
  display: block;
  width: 100%;
  height: 104px;
  object-fit: cover;
  border-radius: 12px;
  background: #f5f5f7;
}

.work-photo-delete {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(29, 29, 31, 0.72);
  color: #ffffff;
  cursor: pointer;
}

.work-photo-upload,
.work-complete-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.work-file {
  margin: 0;
}

.work-file input[type="file"] {
  display: block;
  width: 100%;
  margin-top: 8px;
}

.work-complete-hint,
.work-room-status,
.work-reward-bar__hint {
  margin: 0;
  color: #555555;
  font-size: 13px;
  line-height: 1.6;
}

.work-room-card label.work-complete-check,
.work-complete-check {
  margin-top: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.work-reward-bar {
  margin: 0 0 24px;
  padding: 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.work-reward-bar label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.work-reward-bar__hint {
  margin-top: 12px;
}

.work-reward-rates {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.work-reward-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-reward-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 16px 0;
}

.work-reward-list li + li {
  box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04);
}

.work-reward-list__month {
  margin: 0;
  font-weight: 600;
}

.work-reward-list__meta {
  margin: 4px 0 0;
  color: #555555;
  font-size: 13px;
}

.work-reward-list__amount {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #1d1d1f;
}

.work-sheet {
  position: fixed;
  inset: 0;
  z-index: 140;
  pointer-events: none;
}

.work-sheet.is-open {
  pointer-events: auto;
}

.work-sheet__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.32);
  opacity: 0;
  transition: opacity 0.24s ease;
}

.work-sheet.is-open .work-sheet__backdrop {
  opacity: 1;
}

.work-sheet__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 92vh;
  overflow-y: auto;
  padding: 8px 16px 32px;
  background: #ffffff;
  border-radius: 24px 24px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  transition: transform 0.28s ease;
}

.work-sheet.is-open .work-sheet__panel {
  transform: translateY(0);
}

.work-sheet__handle {
  width: 40px;
  height: 4px;
  margin: 8px auto 16px;
  border-radius: 999px;
  background: #d2d2d7;
}

.work-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.work-sheet__header h2 {
  margin: 0;
  font-size: 20px;
}

.work-sheet__close {
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #f5f5f7;
  color: #1d1d1f;
  cursor: pointer;
}

.work-sheet__form {
  margin-top: 0;
}

.work-sheet__form .btn-primary,
.work-login-form.work-sheet__form .btn-primary {
  width: 100%;
}

@media (min-width: 768px) {
  .work-kpi-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .work-main {
    padding: 32px 24px 64px;
  }

  .work-filter,
  .work-bulk__row,
  .work-room-card__fields,
  .work-ops-grid,
  .work-def,
  .work-reward-rates {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .work-filter__search {
    grid-column: 1 / -1;
  }

  .work-sticky-save .btn-primary,
  .work-ops-form .btn-primary,
  .work-filter .btn-primary,
  .work-bulk .btn-primary {
    width: auto;
  }

  .work-bulk > .btn-primary {
    width: 100%;
    min-width: 160px;
  }

  .work-page-head {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }

  .work-add-btn {
    flex: 0 0 auto;
  }

  .work-sheet__panel {
    left: 50%;
    right: auto;
    width: 560px;
    margin-left: -280px;
    padding: 8px 24px 32px;
  }

  .work-sheet__form .btn-primary {
    width: 100%;
  }
}

