* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background: #0b1020;
  color: #f8fafc;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.sidebar {
  background: #101827;
  border-right: 1px solid #223047;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #22c55e;
  color: #07110b;
  font-weight: 800;
  font-size: 24px;
}

.brand h1,
.brand p,
.topbar h2,
.topbar p {
  margin: 0;
}

.brand h1 {
  font-size: 20px;
}

.brand p,
.eyebrow,
.message {
  color: #94a3b8;
}

.tool-nav {
  display: grid;
  gap: 10px;
}

.tool-tab,
.ghost-button {
  min-height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #cbd5e1;
  background: transparent;
  padding: 0 12px;
  text-align: left;
}

.tool-tab:hover,
.ghost-button:hover {
  background: #182235;
}

.tool-tab.active {
  background: #2563eb;
  color: white;
}

.ghost-button {
  margin-top: auto;
}

.main-panel {
  min-width: 0;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(34, 197, 94, 0.12), transparent 28%),
    linear-gradient(315deg, rgba(37, 99, 235, 0.16), transparent 32%),
    #0b1020;
}

.auth-layout {
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: minmax(280px, 560px) 380px;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.auth-copy h2 {
  margin: 8px 0 16px;
  font-size: 48px;
  line-height: 1.05;
  max-width: 620px;
}

.auth-copy p {
  font-size: 18px;
  line-height: 1.6;
  max-width: 560px;
  color: #cbd5e1;
}

.auth-card,
.input-panel,
.output-panel {
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid #263449;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.auth-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #0b1220;
  border: 1px solid #24324a;
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 18px;
}

.auth-toggle button {
  height: 38px;
  border-radius: 6px;
  color: #94a3b8;
  background: transparent;
}

.auth-toggle button.active {
  background: #1e40af;
  color: white;
}

label {
  display: block;
  margin: 14px 0 8px;
  color: #dbeafe;
  font-weight: 700;
  font-size: 14px;
}

input,
textarea {
  width: 100%;
  border: 1px solid #334155;
  border-radius: 8px;
  background: #08111f;
  color: white;
  padding: 12px 14px;
  outline: none;
}

textarea {
  min-height: 280px;
  resize: vertical;
  line-height: 1.5;
}

input:focus,
textarea:focus {
  border-color: #60a5fa;
}

.primary-button,
.secondary-button {
  min-height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px;
}

.primary-button {
  width: 100%;
  margin-top: 18px;
  background: #22c55e;
  color: #052e16;
  font-weight: 800;
}

.secondary-button {
  background: #1f2937;
  color: #e5e7eb;
}

.dashboard {
  display: grid;
  gap: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar h2 {
  font-size: 32px;
}

.account-pill {
  min-height: 40px;
  border-radius: 999px;
  background: #111827;
  border: 1px solid #263449;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}

.workspace {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1.1fr);
  gap: 22px;
}

.actions {
  display: flex;
  gap: 10px;
}

.actions .primary-button {
  width: auto;
}

.output-header {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.output-header h3 {
  margin: 0;
}

.icon-button {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #cbd5e1;
  background: #111827;
  border: 1px solid #263449;
}

pre {
  min-height: 340px;
  max-height: 62vh;
  overflow: auto;
  white-space: pre-wrap;
  line-height: 1.55;
  color: #e5e7eb;
  background: #08111f;
  border: 1px solid #223047;
  border-radius: 8px;
  padding: 16px;
}

.hidden {
  display: none !important;
}

svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 900px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: 0;
    border-bottom: 1px solid #223047;
  }

  .auth-layout,
  .workspace {
    grid-template-columns: 1fr;
  }

  .auth-copy h2 {
    font-size: 34px;
  }

  .main-panel {
    padding: 20px;
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 12px;
}

.resume-form textarea {
  min-height: 110px;
}

.resume-form input {
  min-height: 44px;
}

@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.step-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.step-tab {
  min-height: 38px;
  border-radius: 8px;
  background: #111827;
  color: #cbd5e1;
  border: 1px solid #263449;
}

.step-tab.active {
  background: #2563eb;
  color: white;
}

.resume-step {
  display: none;
}

.resume-step.active {
  display: block;
}

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

.job-header h3 {
  margin: 0;
}

.job-card {
  border: 1px solid #263449;
  border-radius: 8px;
  padding: 14px;
  margin-bottom: 14px;
  background: #0b1220;
}

.job-card-title {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.remove-job {
  background: #3f1d1d;
  color: #fecaca;
  border-radius: 8px;
  min-height: 34px;
  padding: 0 10px;
}

.current-row {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #cbd5e1;
  margin-top: 12px;
}

.current-row input {
  width: auto;
}

@media (max-width: 700px) {
  .step-tabs {
    grid-template-columns: 1fr 1fr;
  }
}

.actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.actions .primary-button,
.actions .secondary-button {
  width: auto;
  min-width: 120px;
  min-height: 44px;
}

.workspace {
  align-items: start;
}

.input-panel,
.output-panel {
  min-width: 0;
}

#standardInput.hidden,
#resumeForm.hidden {
  display: none !important;
}

.output-header {
  min-height: 44px;
  margin-bottom: 14px;
}

.icon-button {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
}

.actions {
  margin-top: 22px;
}

.actions .primary-button,
.actions .secondary-button {
  height: 54px;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 8px;
}

.actions .primary-button {
  min-width: 172px;
}

.actions .secondary-button {
  min-width: 120px;
}

.input-panel,
.output-panel {
  min-height: 570px;
}

pre {
  min-height: 425px;
}

.input-panel,
.output-panel {
  min-height: 0;
}

pre {
  min-height: 360px;
  max-height: 52vh;
}

.actions {
  margin-top: 18px;
}

.actions .primary-button,
.actions .secondary-button {
  height: 44px;
  min-height: 44px;
  padding: 0 18px;
}

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

.actions .secondary-button {
  min-width: 112px;
}

.icon-button {
  width: 40px;
  height: 40px;
  min-width: 40px;
}

.output-header {
  min-height: 40px;
  margin-bottom: 12px;
}

.actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.actions .primary-button,
.actions .secondary-button {
  height: 56px;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  padding: 0 28px;
}

.actions .primary-button svg,
.actions .secondary-button svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.actions .primary-button span,
.actions .secondary-button span {
  display: inline-block;
  line-height: 1;
}

.actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.actions .primary-button,
.actions .secondary-button {
  margin-top: 0 !important;
  width: auto !important;
  min-width: 150px;
  height: 48px;
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  border-radius: 8px;
}

.actions .secondary-button {
  min-width: 120px;
}

.actions .primary-button svg,
.actions .secondary-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.actions .primary-button,
.actions .secondary-button {
  margin-top: 0 !important;
  width: auto !important;
  min-width: 150px;
  height: 48px;
  min-height: 48px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  border-radius: 8px;
}

.actions .secondary-button {
  min-width: 120px;
}

.actions .primary-button svg,
.actions .secondary-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.actions {
  margin-top: 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.actions .primary-button,
.actions .secondary-button {
  width: 152px !important;
  min-width: 152px !important;
  max-width: 152px !important;
  height: 56px !important;
  min-height: 56px !important;
  max-height: 56px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  line-height: 1 !important;
  border-radius: 8px !important;
}

.actions .primary-button svg,
.actions .secondary-button svg {
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px !important;
}

.actions .primary-button span,
.actions .secondary-button span {
  display: block !important;
  line-height: 1 !important;
}

.workspace {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 28px !important;
  align-items: stretch !important;
}

.input-panel,
.output-panel {
  width: 100% !important;
  min-height: 504px !important;
  height: auto !important;
  align-self: stretch !important;
}

.output-panel {
  display: flex !important;
  flex-direction: column !important;
}

.output-header {
  flex: 0 0 auto !important;
}

pre {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  height: auto !important;
}

.tool-actions {
  margin-top: 24px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.tool-action {
  width: 142px !important;
  height: 46px !important;
  min-width: 142px !important;
  min-height: 46px !important;
  max-width: 142px !important;
  max-height: 46px !important;
  padding: 0 !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.tool-action svg {
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
}

#generateBtn,
#clearBtn {
  width: 128px !important;
  min-width: 128px !important;
  max-width: 128px !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  padding: 0 14px !important;
  margin: 0 !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

#generateBtn svg,
#clearBtn svg {
  width: 17px !important;
  height: 17px !important;
  flex: 0 0 17px !important;
}

.tool-actions,
.actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

#generateBtn,
#clearBtn {
  width: 112px !important;
  min-width: 112px !important;
  max-width: 112px !important;
  height: 36px !important;
  min-height: 36px !important;
  max-height: 36px !important;
  padding: 0 10px !important;
  font-size: 14px !important;
  gap: 7px !important;
}

#generateBtn svg,
#clearBtn svg {
  width: 16px !important;
  height: 16px !important;
  flex: 0 0 16px !important;
}

.download-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 110px 136px;
  gap: 10px;
  align-items: center;
}

.download-row input,
.download-row select {
  height: 38px;
  min-height: 38px;
  border-radius: 8px;
  border: 1px solid #334155;
  background: #08111f;
  color: #f8fafc;
  padding: 0 12px;
}

.download-button {
  height: 38px;
  border-radius: 8px;
  background: #2563eb;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
}

.download-button svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 760px) {
  .download-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .workspace {
    grid-template-columns: 1fr !important;
  }

  .input-panel,
  .output-panel {
    min-height: 0 !important;
  }

  pre {
    min-height: 300px !important;
  }
}

@media (max-width: 760px) {
  .app-shell {
    grid-template-columns: 1fr !important;
  }

  .sidebar {
    position: static;
    border-right: 0;
    border-bottom: 1px solid #223047;
  }

  .main-panel {
    padding: 18px !important;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar h2 {
    font-size: 32px;
  }

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

  .step-tabs {
    grid-template-columns: 1fr 1fr !important;
  }

  .tool-actions {
    flex-wrap: wrap;
  }

  #generateBtn,
  #clearBtn {
    width: 112px !important;
  }

  .download-row {
    grid-template-columns: 1fr !important;
  }
}

.wizard-status {
  color: #94a3b8;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
}

.wizard-actions {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.wizard-button {
  min-width: 92px;
  height: 38px;
  border-radius: 8px;
  background: #1f2937;
  color: #f8fafc;
  font-weight: 700;
}

.wizard-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.primary-wizard {
  background: #2563eb;
}

.account-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.usage-pill {
  min-height: 40px;
  border-radius: 999px;
  background: #13251b;
  border: 1px solid #245b37;
  color: #86efac;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-weight: 700;
  font-size: 14px;
}

.upgrade-notice {
  border: 1px solid #7c5f1f;
  background: #211a0b;
  color: #fde68a;
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.4;
}

button:disabled,
input:disabled,
select:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.billing-button {
  min-height: 40px;
  border-radius: 999px;
  border: 0;
  padding: 0 16px;
  background: #22c55e;
  color: #052e16;
  font-weight: 800;
}

.billing-button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.topbar {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

.account-group {
  min-width: 0 !important;
  max-width: 760px !important;
}

.billing-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  flex: 0 0 auto !important;
}

.upgrade-notice {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
}

.upgrade-inline-button {
  min-height: 34px;
  border-radius: 8px;
  border: 0;
  padding: 0 14px;
  background: #22c55e;
  color: #052e16;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

@media (max-width: 980px) {
  .account-group {
    justify-content: flex-start !important;
  }

  .upgrade-notice {
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}

.upgrade-notice[hidden] {
  display: none !important;
}


/* Phase 2: Job Description Analyzer */
.job-analyzer-form {
  display: grid;
  gap: 4px;
}

.compact-textarea {
  min-height: 190px;
}

.tool-actions {
  margin-top: 18px;
}

@media (max-width: 900px) {
  .compact-textarea {
    min-height: 160px;
  }
}


/* Phase 2: Interview Coach */
.interview-coach-form {
  display: grid;
  gap: 4px;
}


/* Phase 2: LinkedIn Profile Optimizer */
.linkedin-optimizer-form {
  display: grid;
  gap: 4px;
}

.short-textarea {
  min-height: 92px;
}


/* Phase 2: Job Search Assistant */
.job-search-form {
  display: grid;
  gap: 4px;
}

.job-search-form select {
  width: 100%;
  border: 1px solid #334155;
  border-radius: 8px;
  background: #08111f;
  color: white;
  padding: 12px 14px;
  outline: none;
}

.job-search-form select:focus {
  border-color: #60a5fa;
}

.job-search-remote-row {
  margin-top: 12px;
}


/* Dashboard navigation organization */
.tool-nav {
  align-content: start;
  gap: 18px;
}

.nav-section {
  display: grid;
  gap: 8px;
}

.nav-section-label {
  margin: 0 0 2px;
  color: #7dd3fc;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-section-muted {
  padding-top: 2px;
  border-top: 1px solid #223047;
}

.nav-placeholder {
  min-height: 38px;
  border: 1px dashed #334155;
  border-radius: 8px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: #64748b;
  font-size: 14px;
}

@media (max-width: 900px) {
  .tool-nav {
    gap: 14px;
  }
}


/* Recent Results */
.recent-results {
  margin-top: 18px;
  border-top: 1px solid #223047;
  padding-top: 16px;
}

.recent-header {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.recent-header h4 {
  margin: 0;
  font-size: 15px;
  color: #dbeafe;
}

.text-button {
  min-height: 30px;
  border-radius: 8px;
  background: transparent;
  color: #93c5fd;
  padding: 0 8px;
  font-weight: 700;
}

.text-button:hover:not(:disabled) {
  background: #111827;
}

.recent-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.recent-empty {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.4;
}

.recent-item {
  width: 100%;
  border: 1px solid #263449;
  border-radius: 8px;
  background: #0b1220;
  color: #e5e7eb;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  text-align: left;
}

.recent-item:hover {
  border-color: #3b82f6;
  background: #101827;
}

.recent-item-title,
.recent-item-meta {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.recent-item-title {
  font-weight: 800;
}

.recent-item-meta {
  color: #94a3b8;
  font-size: 12px;
}


/* Legal and trust footer */
.app-footer {
  border-top: 1px solid #223047;
  margin-top: 22px;
  padding: 18px 0 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #94a3b8;
}

.app-footer span {
  color: #f8fafc;
  font-weight: 900;
}

.app-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 14px;
}

.app-footer a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
}

.app-footer a:hover {
  color: #86efac;
}

@media (max-width: 760px) {
  .app-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .app-footer nav {
    justify-content: flex-start;
  }
}


/* Account saved work */
.output-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.saved-work {
  margin-top: 18px;
  border-top: 1px solid #223047;
  padding-top: 16px;
}

.saved-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: stretch;
}

.saved-item-open {
  width: 100%;
  border: 1px solid #263449;
  border-radius: 8px;
  background: #0b1220;
  color: #e5e7eb;
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  text-align: left;
}

.saved-item-open:hover {
  border-color: #22c55e;
  background: #101827;
}

.saved-delete {
  border-radius: 8px;
  background: #3f1d1d;
  color: #fecaca;
  padding: 0 10px;
  font-weight: 800;
}

@media (max-width: 520px) {
  .saved-item {
    grid-template-columns: 1fr;
  }

  .saved-delete {
    min-height: 34px;
  }
}


/* Getting started onboarding */
.onboarding-panel {
  border: 1px solid #263449;
  border-radius: 8px;
  background: rgba(8, 17, 31, 0.78);
  padding: 16px;
  margin-bottom: 18px;
  display: grid;
  gap: 12px;
}

.onboarding-panel h3,
.onboarding-panel p {
  margin: 0;
}

.onboarding-panel h3 {
  font-size: 19px;
}

.onboarding-panel ol {
  margin: 0;
  padding-left: 20px;
  color: #cbd5e1;
  line-height: 1.7;
}

.onboarding-panel .text-button {
  justify-self: start;
}

.overview-kicker {
  color: #86efac;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}


/* Product access summary */
.product-access-panel {
  border: 1px solid #263449;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.78);
  padding: 16px;
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-access-panel h3,
.product-access-panel p {
  margin: 0;
}

.product-access-panel h3 {
  margin-top: 4px;
  font-size: 20px;
}

.product-access-panel p:not(.overview-kicker) {
  margin-top: 5px;
  color: #cbd5e1;
  line-height: 1.45;
}

.access-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.access-actions a {
  min-height: 36px;
  border-radius: 8px;
  background: #1f2937;
  color: #dbeafe;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  text-decoration: none;
  font-weight: 800;
}

@media (max-width: 760px) {
  .product-access-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .access-actions {
    width: 100%;
    justify-content: flex-start;
  }
}
