@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #333333;
  display: flex;
  min-height: 100vh;
}
body.menu-open {
  overflow: hidden;
}

h1 {
  font-size: 24px;
  font-weight: 600;
}

h2 {
  font-size: 14px;
  font-weight: 600;
  color: #666;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

table thead {
  background-color: #f5f5f5;
}

table th {
  padding: 12px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 2px solid #e0e0e0;
}

table td {
  padding: 12px;
  border-bottom: none;
  font-size: 14px;
}

table tr:not(.tags-row) td {
  border-bottom: none;
}

table tr:hover {
  background-color: #fafafa;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.complete {
  background-color: #4caf50;
}
.status-dot.ongoing {
  background-color: #ff9800;
}

.gym-item {
  padding: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  text-decoration: none;
  color: #333333;
}
.gym-item:hover {
  background-color: #e8e8e8;
}
.gym-item.active {
  background-color: #2196f3;
  color: #ffffff;
  font-weight: 500;
}

.gym-name {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gym-initial {
  font-size: 11px;
  color: #999;
  font-weight: 500;
  min-width: 20px;
  text-align: right;
}

.gym-item.active .gym-initial {
  color: rgba(255, 255, 255, 0.8);
}

.gym-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e0e0e0;
}

.gym-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.status-badge {
  font-size: 12px;
  color: #999;
  margin-bottom: 0;
  white-space: nowrap;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-btn svg {
  width: 20px;
  height: 20px;
  color: #666;
  stroke-width: 1.5;
}
.search-btn:hover svg {
  color: #333333;
}

.hamburger-btn,
.search-toggle-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.hamburger-btn svg,
.search-toggle-btn svg {
  width: 24px;
  height: 24px;
  color: #333333;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: #333333;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: #666;
}

.tag {
  display: inline-block;
  padding: 2px 8px;
  background-color: #e0e0e0;
  border-radius: 12px;
  font-size: 12px;
  color: #666;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
}
.tag:hover {
  background-color: #999999;
  color: #ffffff;
}
.tag.primary {
  background-color: #999999;
  color: #ffffff;
}
.tag.primary:hover {
  background-color: #999;
}

.suggestion-chip {
  padding: 4px 12px;
  background-color: #e3f2fd;
  border-radius: 16px;
  cursor: pointer;
  font-size: 13px;
  color: #1565c0;
  transition: all 0.2s;
}
.suggestion-chip:hover {
  background-color: #bbdefb;
}
.suggestion-chip.primary {
  background-color: #1565c0;
  color: #ffffff;
}
.suggestion-chip.primary:hover {
  background-color: #0d47a1;
}

.brand {
  font-weight: 500;
  color: #555;
}

.tags-cell {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.tags-row {
  display: none;
}
.tags-row td {
  padding: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.tags-row .tags-cell {
  padding: 12px;
}

.outlet-link {
  color: #2196f3;
  text-decoration: none;
  cursor: pointer;
}
.outlet-link:hover {
  text-decoration: underline;
}
.outlet-link:visited {
  color: #2196f3;
}

.clickable-equipment {
  cursor: pointer;
  color: #333333;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
  display: inline-block;
}
.clickable-equipment:hover {
  color: #2196f3;
  text-decoration: underline;
}
.clickable-equipment::after {
  content: "↗";
  margin-left: 4px;
  font-size: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}
.clickable-equipment:hover::after {
  opacity: 1;
}

.search-result-header {
  font-size: 16px;
  color: #666;
  margin-bottom: 16px;
  padding: 12px;
  background-color: #f5f5f5;
  border-radius: 4px;
}

.empty-state {
  padding: 32px;
  text-align: center;
  color: #999999;
}

.error {
  padding: 32px;
  text-align: center;
  color: #d32f2f;
}

.modal-overlay,
.search-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.modal-overlay.active,
.search-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  width: 90vw;
  max-width: 600px;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

#equipmentModal {
  transform: translate(-50%, calc(-50% - 20px));
}
#equipmentModal.active {
  transform: translate(-50%, -50%);
}

.modal-body {
  padding: 16px;
  flex: 1;
  overflow-y: auto;
}

.modal-section {
  margin-bottom: 16px;
}
.modal-section:last-child {
  margin-bottom: 0;
}

.modal-section.inline-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}
.modal-section.inline-label > label {
  font-weight: 600;
  font-size: 14px;
  margin-top: 4px;
  flex-shrink: 0;
}
.modal-section.inline-label .radio-group {
  flex: 1;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-btn {
  padding: 2px 8px;
  background-color: #f5f5f5;
  color: #333333;
  border: none;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.pill-btn:hover {
  background-color: #ececec;
}
.pill-btn.active {
  background-color: #2196f3;
  color: #ffffff;
}

.equipment-text {
  background-color: #f5f5f5;
  padding: 12px;
  border-radius: 4px;
  font-family: "Courier New", monospace;
  font-size: 12px;
  max-height: 300px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  margin: 0;
  border: 1px solid #e0e0e0;
}

.modal-footer {
  display: flex;
  gap: 12px;
  padding: 16px;
  border-top: 1px solid #e0e0e0;
  flex-shrink: 0;
  justify-content: flex-end;
}

.btn-primary,
.btn-secondary {
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background-color: #2196f3;
  color: #ffffff;
}
.btn-primary:hover:not(:disabled) {
  background-color: #1976d2;
}
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-secondary {
  background-color: #e0e0e0;
  color: #333333;
}
.btn-secondary:hover {
  background-color: #d4d4d4;
}

.btn-copy-equipment {
  padding: 8px 16px;
  background-color: #2196f3;
  color: #ffffff;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-copy-equipment:hover {
  background-color: #1976d2;
}
.btn-copy-equipment .btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.gym-title-section {
  flex: 1;
}

.equipment-notes {
  color: #999;
  font-size: 12px;
  font-style: italic;
}

.gym-summaries {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.gym-summary-header {
  display: none;
}

.gym-summary-row {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 16px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  align-items: center;
  transition: all 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.gym-summary-row:hover {
  background-color: #fafafa;
  border-color: #2196f3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.gym-summary-count {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: #2196f3;
  background-color: rgba(33, 150, 243, 0.1);
  border-radius: 6px;
  padding: 12px 8px;
  min-height: 60px;
  flex-shrink: 0;
}

.gym-summary-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.gym-summary-name {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
.gym-summary-name:hover {
  color: #2196f3;
}

.gym-summary-preview {
  font-size: 12px;
  color: #999;
  line-height: 1.5;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

aside {
  width: 240px;
  background-color: #f5f5f5;
  border-right: 1px solid #e0e0e0;
  padding: 20px;
  flex-shrink: 0;
  overflow-y: auto;
  max-height: 100vh;
  position: sticky;
  top: 0;
}

.gym-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

header {
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
  padding: 16px 32px;
  flex-shrink: 0;
  position: relative;
}
header h1 {
  margin-bottom: 0;
}

.header-top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}
.header-top h1 {
  margin-bottom: 0;
  flex-shrink: 0;
}

.search-container {
  display: flex;
  position: relative;
  gap: 0;
  width: 100%;
  max-width: 500px;
  margin-left: auto;
}

.search-input {
  flex: 1;
  padding: 10px 16px;
  padding-right: 80px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
}
.search-input:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 2px rgba(33, 150, 243, 0.1);
}

.suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  display: none;
  flex-wrap: wrap;
  gap: 4px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.suggestions:not(:empty) {
  display: flex;
}

.content {
  flex: 1;
  overflow-y: auto;
  padding: 24px 32px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 240px;
  background: #f5f5f5;
  border-right: 1px solid #e0e0e0;
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
  flex-direction: column;
  gap: 4px;
  display: flex;
  transform: translateX(-100%);
  transition: transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.mobile-menu-header h2 {
  margin-bottom: 0;
  flex: 1;
}

.menu-overlay {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94), visibility 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
}
.menu-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.landing-page {
  padding: 0;
}
.landing-page h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
  color: #333333;
}

.landing-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.landing-left,
.landing-right {
  display: flex;
  flex-direction: column;
}
.landing-left h3,
.landing-right h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #333333;
}

.landing-gym-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.landing-tags {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.landing-tag {
  display: inline-block;
  padding: 8px 16px;
  background-color: #1565c0;
  color: #ffffff;
  border-radius: 6px;
  text-decoration: none;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  text-align: left;
}
.landing-tag:hover {
  background-color: #0d47a1;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(var(--grid-cols, 4), 1fr);
  gap: 12px;
  margin-top: 16px;
}

.grid-header {
  display: contents;
}

.grid-row {
  display: contents;
}

.grid-cell {
  padding: 12px;
  border-bottom: 1px solid #e0e0e0;
}
.grid-cell:first-child {
  border-left: 1px solid #e0e0e0;
}
.grid-cell:last-child {
  border-right: 1px solid #e0e0e0;
}
.grid-cell strong {
  font-weight: 600;
  color: #333333;
}

.equipment-gym-heading {
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  margin-top: 16px;
  margin-bottom: 8px;
  padding-top: 16px;
  border-top: 1px solid #e0e0e0;
}
.equipment-gym-heading:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.equipment-gym-heading a {
  color: #2196f3;
  text-decoration: none;
}
.equipment-gym-heading a:hover {
  text-decoration: underline;
}

.equipment-item {
  padding: 8px 0;
  color: #666;
  line-height: 16px;
}
.equipment-item strong {
  font-weight: 600;
  color: #333333;
}

.category-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: max-content;
  grid-auto-flow: dense;
  gap: 24px;
  margin-top: 16px;
}

.category-card {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  background-color: #ffffff;
  overflow: hidden;
}

.category-card-header {
  background-color: #f5f5f5;
  border-bottom: 1px solid #e0e0e0;
}

.category-card-heading {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  padding: 12px 16px;
  margin: 0;
}

.category-card-content {
  padding: 16px;
}

.equipment-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-card .equipment-item {
  padding: 0;
  border-bottom: none;
  color: #666;
  line-height: 16px;
}
.category-card .equipment-item strong {
  font-weight: 600;
  color: #333333;
}

.category-card .equipment-item:last-child {
  margin-bottom: 0;
}

.equipment-tags {
  display: none;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 4px;
}

.equipment-item {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-card .tag {
  background-color: #e0e0e0;
  color: #666;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  cursor: pointer;
  transition: background-color 0.2s;
}
.category-card .tag:hover {
  background-color: #999999;
  color: #ffffff;
}
.category-card .tag.primary {
  background-color: #999999;
  color: #ffffff;
}
.category-card .tag.primary:hover {
  background-color: #999;
}

@media (max-width: 768px) {
  body {
    flex-direction: column;
  }
  aside {
    display: none;
  }
  .hamburger-btn,
  .search-toggle-btn {
    display: flex;
  }
  header {
    padding: 12px 16px;
    position: relative;
  }
  .header-top {
    flex-direction: row;
    gap: 8px;
    margin-bottom: 0;
    justify-content: space-between;
    align-items: center;
  }
  .header-top h1 {
    font-size: 20px;
    margin-bottom: 0;
    flex: 1;
    text-align: center;
  }
  .search-container {
    display: none;
    margin-left: 0;
    max-width: none;
    position: absolute;
    top: 12px;
    left: 16px;
    right: 16px;
    width: calc(100% - 32px);
    overflow: visible;
  }
  .search-container.active {
    display: flex;
    z-index: 1000;
  }
  .suggestions {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    display: flex;
    padding: 8px;
    gap: 4px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
  }
  .suggestions.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .modal-section.inline-label {
    flex-direction: column;
    gap: 8px;
  }
  .modal-section.inline-label > label {
    margin-top: 0;
  }
  .gym-header {
    flex-wrap: wrap;
    gap: 12px;
  }
  .gym-title-section {
    flex: 1;
    min-width: 0;
  }
  .btn-copy-equipment {
    padding: 8px;
    font-size: 0;
    gap: 0;
    justify-content: center;
  }
  .btn-copy-equipment .btn-icon {
    width: 20px;
    height: 20px;
    margin: 0;
  }
  .content {
    padding: 16px;
  }
  table {
    display: block;
  }
  table thead {
    display: block;
  }
  table tbody {
    display: block;
  }
  table tr {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
    gap: 0;
  }
  table tr:not(.tags-row) td:nth-child(4) {
    display: none;
  }
  .tags-row {
    display: block;
    width: 100%;
    margin-top: -6px;
  }
  .tags-row td {
    display: block;
    width: 100%;
    padding: 0px 12px 6px 12px;
  }
  .tags-row .tags-cell {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
  }
  table th {
    padding: 8px;
    font-size: 13px;
  }
  table th:nth-child(4) {
    display: none;
  }
  table td {
    padding: 8px;
    font-size: 13px;
  }
  .tag {
    font-size: 11px;
    padding: 2px 6px;
  }
  .landing-page h1 {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .landing-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .landing-left h3,
  .landing-right h3 {
    font-size: 15px;
  }
  .landing-tag {
    font-size: 13px;
    padding: 6px 12px;
  }
  .category-cards {
    grid-template-columns: 1fr;
  }
  .category-card-heading {
    font-size: 12px;
    padding: 12px;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .category-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
.home-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.home-link:hover {
  opacity: 0.7;
}

.home-link h1 {
  margin: 0;
}

/* Equipment Inventory View Styles */
.inventory-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  padding: 0;
}

.summary-item {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.summary-value {
  font-size: 28px;
  font-weight: 700;
  color: #2196f3;
  margin-bottom: 8px;
}

.summary-label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.recent-updates {
  margin-top: 8px;
}

.recent-updates-title {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #999;
  margin: 0 0 12px;
}

.recent-updates-list {
  list-style: none;
  margin: 0;
  padding: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.recent-update-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid #f0f0f0;
}
.recent-update-item:last-child {
  border-bottom: none;
}

.recent-update-gym {
  background: none;
  border: none;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  color: #2196f3;
  cursor: pointer;
  text-align: left;
}
.recent-update-gym:hover {
  text-decoration: underline;
}

.recent-update-date {
  font-size: 13px;
  color: #999;
  white-space: nowrap;
  margin-left: 16px;
}

.inventory-gym-section {
  background: white;
  border-radius: 8px;
  margin-bottom: 32px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.inventory-gym-header {
  background: #f5f5f5;
  color: #333333;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-bottom: 2px solid #e0e0e0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.inventory-gym-header:hover {
  background-color: #efefef;
}

.inventory-gym-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.inventory-gym-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.inventory-accordion-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  color: #333333;
  padding: 0 8px;
  transition: transform 0.2s ease;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.inventory-gym-meta {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
}

.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.2);
}

.status-badge.complete {
  background: rgba(76, 175, 80, 0.3);
  color: #4caf50;
}

.status-badge.ongoing {
  background: rgba(255, 193, 7, 0.3);
  color: #ffc107;
}

.inventory-categories {
  max-height: 10000px;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 20px;
}

.inventory-categories.collapsed {
  max-height: 0;
  padding: 0;
}

.inventory-category {
  margin-bottom: 24px;
}

.inventory-category:last-child {
  margin-bottom: 0;
}

.inventory-category-title {
  font-weight: 700;
  font-size: 14px;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 0;
  border-bottom: 2px solid #e0e0e0;
  margin-bottom: 12px;
  display: flex;
  gap: 4px;
}

.inventory-count {
  color: #999;
  font-weight: 600;
}

.inventory-equipment-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inventory-equipment-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.inventory-equipment-item:last-child {
  border-bottom: none;
}

.inventory-equipment-left {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.inventory-brand {
  font-weight: 500;
  color: #333333;
  font-size: 13px;
}

.inventory-name {
  font-weight: 500;
  cursor: pointer;
  color: #333333;
  transition: color 0.2s ease;
  font-size: 13px;
}

.inventory-name:hover {
  color: #2196f3;
  text-decoration: underline;
}

.inventory-notes {
  color: #999;
  font-size: 12px;
}

.inventory-equipment-tags {
  display: flex;
  flex-direction: row;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
}

.inventory-tag {
  display: inline-block;
  background: #f0f0f0;
  color: #666;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 11px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.inventory-tag:hover {
  background: #999;
  color: white;
}

.equipment-item--unavailable {
  opacity: 0.65;
}

.equipment-unavailable {
  color: #999999;
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  cursor: default;
}

.inventory-equipment-item--unavailable {
  opacity: 0.65;
}

.inventory-name--unavailable {
  font-weight: 500;
  font-size: 13px;
  color: #999999;
  text-decoration: line-through;
  cursor: default;
}

@media (max-width: 768px) {
  .inventory-summary {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .summary-item {
    padding: 16px;
  }
  .inventory-gym-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .inventory-gym-meta {
    width: 100%;
  }
  .inventory-equipment-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .inventory-equipment-tags {
    display: none;
  }
  .inventory-categories {
    padding: 16px;
  }
  .inventory-category-title {
    font-size: 13px;
    padding: 8px 0;
  }
}

/*# sourceMappingURL=styles.css.map */
