* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #0052cc;
  --secondary-color: #6b778c;
  --success-color: #36b37e;
  --error-color: #de350b;
  --warning-color: #ffab00;
  --bg-color: #f4f5f7;
  --card-bg: #ffffff;
  --border-color: #dfe1e6;
  --text-primary: #172b4d;
  --text-secondary: #6b778c;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-hover: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  background: var(--bg-color);
  color: var(--text-primary);
  line-height: 1.6;
  padding: 20px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

/* Top navigation */
.top-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
  padding: 8px;
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.nav-link {
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.nav-link:hover {
  background: var(--bg-color);
  color: var(--primary-color);
}

.nav-link.active {
  background: var(--primary-color);
  color: #fff;
}

.nav-link-spotlight:not(.active) {
  color: #5b21b6;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.12) 0%, rgba(96, 165, 250, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.35);
  box-shadow: 0 1px 4px rgba(139, 92, 246, 0.15);
}

.nav-link-spotlight:not(.active):hover {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.22) 0%, rgba(96, 165, 250, 0.18) 100%);
  color: #4c1d95;
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(139, 92, 246, 0.25);
}

.nav-link-spotlight.active {
  background: linear-gradient(135deg, #7c3aed 0%, #2563eb 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.35);
}

.nav-link-guide:not(.active) {
  color: #006644;
  font-weight: 600;
  background: rgba(54, 179, 126, 0.1);
  border: 1px solid rgba(54, 179, 126, 0.35);
}

.nav-link-guide:not(.active):hover {
  background: rgba(54, 179, 126, 0.18);
  color: #004d33;
}

.nav-link-guide.active {
  background: #00875a;
  color: #fff;
  font-weight: 600;
}

.nav-link-logout {
  margin-left: auto;
  cursor: pointer;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  font: inherit;
}

.nav-link-logout:hover {
  background: var(--bg-color);
  color: var(--error-color);
  border-color: rgba(222, 53, 11, 0.35);
}

.login-container {
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.login-page {
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(0, 82, 204, 0.12), transparent 42%),
    radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.1), transparent 38%),
    var(--bg-color);
}

body.login-page [hidden] {
  display: none !important;
}

.login-page-wrap {
  height: 100vh;
  overflow: auto;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-splash {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(0, 82, 204, 0.12), transparent 42%),
    radial-gradient(circle at bottom left, rgba(124, 58, 237, 0.1), transparent 38%),
    var(--bg-color);
}

.login-splash-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 32px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow-hover);
  color: var(--text-secondary);
}

.loading-dark {
  border-color: rgba(0, 82, 204, 0.15);
  border-top-color: var(--primary-color);
}

.login-shell {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.login-brand {
  padding: 12px 8px;
}

.login-brand-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: linear-gradient(135deg, rgba(0, 82, 204, 0.12), rgba(124, 58, 237, 0.12));
  border-radius: 16px;
  margin-bottom: 20px;
}

.login-brand h1 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  line-height: 1.2;
}

.login-brand p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 360px;
}

.login-card {
  width: 100%;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-hover);
  border: 1px solid rgba(223, 225, 230, 0.9);
}

.login-card-header {
  margin-bottom: 24px;
}

.login-card-header h2 {
  margin: 0 0 6px 0;
  font-size: 1.5rem;
  color: var(--text-primary);
  border: none;
  padding: 0;
}

.login-card-header p {
  margin: 0;
  color: var(--text-secondary);
}

.login-form .form-group {
  margin-bottom: 18px;
}

.login-form label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.login-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.login-form input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.12);
}

.login-form input:disabled {
  background: #f4f5f7;
  cursor: not-allowed;
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 72px;
}

.password-toggle {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  padding: 6px 8px;
  border-radius: 6px;
}

.password-toggle:hover:not(:disabled) {
  background: rgba(0, 82, 204, 0.08);
}

.password-toggle:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.login-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: rgba(222, 53, 11, 0.08);
  border: 1px solid rgba(222, 53, 11, 0.2);
  color: #ae2a19;
  font-size: 0.92rem;
}

.login-error-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--error-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.login-submit {
  width: 100%;
  min-height: 48px;
}

.login-submit .loading {
  vertical-align: middle;
  margin-right: 8px;
}

.login-footnote {
  margin-top: 18px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

@media (max-width: 860px) {
  .login-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .login-brand {
    text-align: center;
  }

  .login-brand-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .login-brand p {
    max-width: none;
  }
}

header {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

header h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--primary-color);
  margin-bottom: 10px;
}

header h1 .app-icon {
  flex-shrink: 0;
  width: 1.15em;
  height: 1.15em;
}

header p {
  color: var(--text-secondary);
}

/* Sections */
section {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

/* Spotlight */
.spotlight {
  position: relative;
  overflow: hidden;
}

.spotlight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.spotlight-text h2 {
  margin: 0 0 6px 0;
}

.spotlight-text .subtitle {
  color: var(--text-secondary);
  font-style: italic;
}

.spotlight-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 3px solid var(--border-color);
}

.highlight {
  color: var(--primary-color);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 10px;
}

.spotlight-card {
  background: var(--bg-color);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 14px;
  position: relative;
}

.spotlight-card-featured {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 1px rgba(0, 102, 204, 0.15);
  background: linear-gradient(135deg, var(--bg-color) 0%, rgba(0, 102, 204, 0.04) 100%);
}

.spotlight-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.spotlight-legend-sep {
  opacity: 0.5;
}

.spotlight-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.spotlight-card > .spotlight-badge {
  margin-bottom: 10px;
}

.spotlight-badge.slack-app {
  background: #611f69;
  color: #fff;
}

.spotlight-badge.global-app {
  background: var(--primary-color);
  color: #fff;
}

.spotlight-list-compact {
  margin: 8px 0 0 0;
  font-size: 0.92rem;
}

.spotlight-list-compact li {
  margin-bottom: 4px;
}

.spotlight-card-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.spotlight-card-head img {
  width: 28px;
  height: 28px;
  border-radius: 4px;
}

.spotlight-list {
  padding-left: 18px;
}

.spotlight-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

section h2 {
  color: var(--text-primary);
  margin-bottom: 20px;
  font-size: 1.5em;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 10px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h2 {
  border: none;
  margin: 0;
  padding: 0;
}

/* Config Grid */
.config-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.config-helper-full {
  grid-column: 1 / -1;
}

.config-helper-full .helper-text code {
  display: inline-block;
  margin: 4px 0;
  padding: 2px 6px;
  background: var(--bg-color);
  border-radius: 4px;
  font-size: 0.85em;
}

.config-helper-full .helper-text a {
  display: inline-block;
  margin-top: 4px;
}

/* Form Groups */
.form-group {
  display: flex;
  flex-direction: column;
}

/* [hidden] must win over .form-group { display: flex } */
.form-group[hidden] {
  display: none !important;
}

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 0.9em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  transition: border-color 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.form-group .helper-text {
  font-size: 0.85em;
  color: var(--text-secondary);
  margin-top: 5px;
  display: block;
}

.form-group .helper-text a {
  color: var(--primary-color);
  text-decoration: none;
}

.form-group .helper-text a:hover {
  text-decoration: underline;
}

/* Items Container */
.items-container {
  display: grid;
  gap: 20px;
}

.item-card {
  background: var(--card-bg);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  position: relative;
  transition: all 0.3s;
}

.item-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-color);
}

.item-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.item-card-header h3 {
  color: var(--primary-color);
  font-size: 1.1em;
}

.btn-remove {
  background: var(--error-color);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.9em;
  transition: background 0.3s;
}

.btn-remove:hover {
  background: #bf2600;
}

.item-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.item-grid.full-width {
  grid-template-columns: 1fr;
}

/* Buttons */
.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover:not(:disabled) {
  background: #0065ff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary {
  background: var(--secondary-color);
  color: white;
}

.btn-secondary:hover:not(:disabled) {
  background: #5a6c7d;
}

.btn-large {
  padding: 15px 40px;
  font-size: 16px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Actions Section */
.actions-section {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Results Section */
.results-section {
  margin-top: 30px;
}

.result-item {
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 4px;
  border-left: 4px solid;
}

.result-item.success {
  background: #e3fcef;
  border-left-color: var(--success-color);
}

.result-item.error {
  background: #ffeef0;
  border-left-color: var(--error-color);
}

.result-item h4 {
  margin-bottom: 5px;
}

.result-item .result-key {
  color: var(--success-color);
  font-weight: 600;
}

.result-item .result-error {
  color: var(--error-color);
}

.subtask-results {
  margin: 10px 0 0 18px;
  padding: 0;
  font-size: 0.92em;
}

.subtask-results li {
  margin-bottom: 4px;
}

.subtask-row {
  border: 1px dashed var(--border-color);
  border-radius: 6px;
  padding: 10px;
  background: #fafbfc;
}

/* AI Planner Section */
.ai-planner-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
}

.ai-planner-controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 15px;
}

.ai-planner-controls .form-group {
  margin-bottom: 0;
}

.ai-planner-controls .ai-key-row {
  grid-column: 1 / -1;
}

.cred-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.cred-label-row label {
  margin-bottom: 0;
}

.optional-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.95);
}

.ai-planner-section .helper-text code {
  background: rgba(0, 0, 0, 0.2);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 0.85em;
}

.ai-planner-controls select,
.ai-planner-controls input[type="password"],
.ai-planner-controls input[type="text"] {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
}

.ai-planner-section h2 {
  color: white;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
}

.ai-planner-section .section-description {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 15px;
}

.ai-planner-section textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  font-size: 14px;
  font-family: 'Courier New', monospace;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
}

.ai-planner-section textarea:focus {
  outline: none;
  border-color: white;
  background: white;
}

.ai-planner-section .helper-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85em;
  margin-top: 5px;
  display: block;
}

/* Collapsible Items */
.btn-collapse {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  color: var(--text-secondary);
  font-size: 0.9em;
  transition: color 0.3s;
}

.btn-collapse:hover {
  color: var(--primary-color);
}

.collapse-icon {
  display: inline-block;
  transition: transform 0.3s;
  font-size: 0.8em;
}

.item-body {
  transition: all 0.3s ease;
  overflow: hidden;
}

.item-body.collapsed {
  display: none;
}

.summary-box {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.summary-item {
  flex: 1;
  min-width: 150px;
  padding: 15px;
  background: var(--bg-color);
  border-radius: 4px;
  text-align: center;
}

.summary-item h3 {
  font-size: 2em;
  margin-bottom: 5px;
}

.summary-item.success h3 {
  color: var(--success-color);
}

.summary-item.error h3 {
  color: var(--error-color);
}

.summary-item.total h3 {
  color: var(--primary-color);
}

/* Loading Spinner */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Setup guide */
body.guide-page {
  padding: 20px;
}

.guide-container {
  max-width: 820px;
}

.guide-page-header {
  text-align: center;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.guide-page-header h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 1.75rem;
}

.guide-page-header p {
  color: var(--text-secondary);
  margin: 0;
}

.guide-doc {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.guide-block {
  background: var(--card-bg);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-color);
}

.guide-doc-title {
  font-size: 1.25rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border-color);
}

.guide-block > p {
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.guide-field-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin-top: 12px;
}

.guide-field-table th,
.guide-field-table td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border-color);
}

.guide-field-table th {
  background: #fafbfc;
  color: var(--text-primary);
  font-weight: 600;
}

.guide-field-table td {
  color: var(--text-secondary);
}

.guide-field-table code {
  font-size: 0.88em;
}

.guide-step-block {
  position: relative;
}

.guide-step-label {
  display: inline-block;
  background: var(--primary-color);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.guide-step-title {
  font-size: 1.15rem;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.guide-step-lead {
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.guide-steps {
  margin: 0 0 4px 20px;
  color: var(--text-secondary);
}

.guide-steps li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.guide-steps li::marker {
  color: var(--primary-color);
  font-weight: 600;
}

.guide-code {
  background: #172b4d;
  color: #79f2c0;
  padding: 12px 16px;
  border-radius: 6px;
  font-family: Consolas, Monaco, monospace;
  font-size: 0.9em;
  overflow-x: auto;
  margin: 8px 0 16px;
  white-space: pre-wrap;
  word-break: break-word;
}

.guide-screenshot {
  margin-top: 16px;
  border: 2px dashed #c1c7d0;
  border-radius: 8px;
  background: #fafbfc;
  overflow: hidden;
}

.guide-screenshot-img {
  display: block;
  width: 100%;
  height: auto;
}

.guide-screenshot.has-image .guide-screenshot-empty {
  display: none;
}

.guide-screenshot-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 40px 20px;
  text-align: center;
  color: var(--text-secondary);
  min-height: 160px;
}

.guide-screenshot-icon {
  font-size: 2rem;
  opacity: 0.6;
}

.guide-screenshot-empty p {
  margin: 0;
  font-size: 0.95rem;
}

.guide-screenshot-empty code {
  font-size: 0.82rem;
  background: #ebecf0;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--text-primary);
}

.guide-notes-list {
  margin: 0 0 16px 20px;
  color: var(--text-secondary);
}

.guide-notes-list li {
  margin-bottom: 6px;
}

@media (max-width: 768px) {
  body.guide-page {
    padding: 12px;
  }

  .guide-block {
    padding: 16px;
  }

  .guide-field-table {
    font-size: 0.88rem;
  }

  .guide-field-table th,
  .guide-field-table td {
    padding: 8px;
  }

  .top-nav .nav-link {
    padding: 6px 10px;
    font-size: 0.9rem;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .config-grid {
    grid-template-columns: 1fr;
  }
  
  .item-grid {
    grid-template-columns: 1fr;
  }
  
  .actions-section {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
}

