/* Store Locator Admin - Standalone Styles */
/* For Shopify Embedded App hosted on Cloudflare Pages */
/* LIGHT MODE THEME */

:root {
  --color-primary: #E14826;
  --color-accent: #FCAA1A;
  --color-success: #4CAF50;
  --color-danger: #c0392b;
  --color-purple: #9C27B0;
  --color-bg-light: #f8f9fa;
  --color-bg-white: #ffffff;
  --color-text: #333333;
  --color-text-muted: #666666;
  --color-border: #e0e0e0;
  --font-heading: 'Cherry Bomb One', cursive;
  --font-body: 'Lexend', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg-light);
  color: var(--color-text);
  min-height: 100vh;
}

/* Loading Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid var(--color-border);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Access Denied */
.access-denied {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.access-denied-content {
  text-align: center;
  max-width: 400px;
  padding: 40px;
}

.access-denied-content h1 {
  color: var(--color-danger);
  font-size: 32px;
  margin-bottom: 20px;
}

.access-denied-content p {
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

#debugInfo {
  background: #f5f5f5 !important;
}

#debugOutput {
  color: #333 !important;
}

/* Admin Wrapper */
.admin-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
.admin-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
}

.admin-title {
  font-family: var(--font-heading);
  font-size: 36px;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.admin-subtitle {
  color: var(--color-text-muted);
  font-size: 16px;
}

/* Tabs */
.admin-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--color-border);
  padding-bottom: 10px;
}

.admin-tab {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
}

.admin-tab:hover {
  color: var(--color-text);
}

.admin-tab.active {
  color: var(--color-primary);
}

.admin-tab.active::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-primary);
  border-radius: 3px;
}

.admin-tab-badge {
  background: var(--color-primary);
  color: white;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
}

/* Tab Content */
.admin-content {
  display: none;
}

.admin-content.active {
  display: block;
}

/* Sections */
.admin-section {
  background: var(--color-bg-white);
  border-radius: 16px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid var(--color-border);
}

.section-title {
  color: var(--color-text);
  margin-bottom: 15px;
  font-size: 18px;
}

.section-desc {
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* Form Elements */
.store-input {
  width: 100%;
  height: 150px;
  padding: 15px;
  border: 2px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-bg-white);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 14px;
  resize: vertical;
}

.store-input::placeholder {
  color: #999;
}

.store-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* Buttons */
.btn-row {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border: none;
  border-radius: 30px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(90deg, var(--color-accent), var(--color-primary));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(225, 72, 38, 0.4);
}

.btn-secondary {
  background: var(--color-bg-light);
  color: var(--color-text);
  border: 1px solid var(--color-border);
}

.btn-secondary:hover {
  background: var(--color-border);
}

.btn-success {
  background: linear-gradient(90deg, #4CAF50, #45a049);
  color: white;
}

.btn-danger {
  background: var(--color-danger);
  color: white;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
  padding: 20px;
  background: var(--color-bg-white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid var(--color-border);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-top: 5px;
}

/* Results Grid */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.store-card {
  background: var(--color-bg-white);
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--color-border);
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.store-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.store-card.approved {
  border-color: var(--color-success);
}

.store-card-image-wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.store-card-image-wrapper:hover .store-card-image-overlay {
  opacity: 1;
}

.store-card-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.store-card-image-overlay span {
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  background: rgba(0,0,0,0.5);
  border-radius: 20px;
}

.store-card-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  background: #eee;
}

/* Photo Change Modal */
.photo-change-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.photo-change-content {
  background: white;
  padding: 30px;
  border-radius: 16px;
  max-width: 450px;
  width: 90%;
  text-align: center;
}

.photo-change-content h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.photo-change-store-name {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 15px;
}

.photo-change-hint {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 15px;
}

.photo-change-maps-link {
  display: inline-block;
  margin-bottom: 20px;
  text-decoration: none;
}

.photo-change-input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.photo-change-input {
  flex: 1;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
}

.photo-change-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.photo-change-cancel {
  width: 100%;
}

.store-card-content {
  padding: 20px;
}

.store-card-name {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.store-card-address {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 15px;
}

.store-card-actions {
  display: flex;
  gap: 10px;
}

.store-card-actions .btn {
  flex: 1;
  padding: 10px 15px;
  font-size: 13px;
}

/* Existing Stores Section */
#existingSection {
  margin-top: 40px;
}

/* Existing Stores Grid */
.existing-stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
  max-height: 400px;
  overflow-y: auto;
  padding: 10px 0;
}

.existing-store-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--color-bg-light);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid var(--color-border);
}

.existing-store-image-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.existing-store-image {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  background: #eee;
}

.existing-store-edit-photo {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-primary, #E14826);
  border: 2px solid white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.existing-store-item:hover .existing-store-edit-photo {
  opacity: 1;
}

.existing-store-info {
  flex: 1;
  min-width: 0;
}

.existing-store-name {
  font-weight: 600;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--color-text);
}

.existing-store-location {
  font-size: 12px;
  color: var(--color-text-muted);
}

.existing-store-delete {
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 5px;
  font-size: 18px;
  transition: color 0.3s;
}

.existing-store-delete:hover {
  color: var(--color-danger);
}

/* Empty State */
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-text-muted);
}

.empty-icon {
  font-size: 64px;
  margin-bottom: 20px;
}

.empty-state h3 {
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

/* Request Cards */
.request-card {
  background: var(--color-bg-white);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border: 1px solid var(--color-border);
}

.request-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.request-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--color-text);
}

.request-card-date {
  font-size: 13px;
  color: var(--color-text-muted);
}

.request-card-details {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-bottom: 20px;
}

.request-detail {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 14px;
}

.request-detail-icon {
  font-size: 18px;
}

.request-card-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.modal.visible {
  display: flex;
}

.modal-content {
  background: var(--color-bg-white);
  border-radius: 16px;
  padding: 30px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  font-size: 24px;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--color-text);
}

.modal-title {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--color-text);
}

/* Photo Gallery */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}

.photo-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}

.photo-gallery img:hover {
  transform: scale(1.02);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-bg-white);
  color: var(--color-text);
  padding: 15px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 2000;
}

.toast.visible {
  opacity: 1;
  visibility: visible;
}

.toast.success {
  border-left: 4px solid var(--color-success);
}

.toast.error {
  border-left: 4px solid var(--color-danger);
}

.toast.warning {
  border-left: 4px solid var(--color-accent);
}

/* Responsive */
@media (max-width: 768px) {
  .admin-title {
    font-size: 28px;
  }

  .admin-tabs {
    flex-direction: column;
  }

  .stats-bar {
    flex-direction: column;
    gap: 20px;
  }

  .btn-row {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }
}

/* Photo Lightbox */
.photo-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20000;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-image {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.lightbox-close:hover {
  color: #ccc;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 48px;
  cursor: pointer;
  padding: 20px 15px;
  border-radius: 8px;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.3);
}

.lightbox-prev {
  left: -80px;
}

.lightbox-next {
  right: -80px;
}

.lightbox-counter {
  color: white;
  margin-top: 15px;
  font-size: 14px;
}

/* Approval Modal */
.approval-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.approval-modal-content {
  background: white;
  border-radius: 12px;
  padding: 24px;
  max-width: 450px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.approval-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.approval-modal-header h2 {
  margin: 0;
  color: #333;
  font-size: 20px;
}

.approval-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  padding: 0;
  line-height: 1;
}

.approval-close-btn:hover {
  color: #333;
}

/* Store Card Preview (like Importer) */
.approval-store-card {
  border: 2px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.approval-card-image-wrapper {
  position: relative;
  cursor: pointer;
}

.approval-card-image-wrapper:hover .approval-card-image-overlay {
  opacity: 1;
}

.approval-card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background: #eee;
}

.approval-card-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s;
}

.approval-card-content {
  padding: 16px;
}

.approval-card-name {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.approval-card-address {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* Data Source Badges */
.approval-sources {
  margin: 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.source-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}

.source-badge.google {
  background: #4285f4;
  color: white;
}

.source-badge.coords {
  background: #34a853;
  color: white;
}

.source-badge.photos {
  background: #34a853;
  color: white;
}

.source-badge.manual {
  background: #fbbc04;
  color: #333;
}

.source-badge.no-coords {
  background: #ea4335;
  color: white;
}

/* Manual Search Section */
.approval-search-section {
  margin: 16px 0;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
}

.approval-search-label {
  margin: 0 0 10px 0;
  font-size: 13px;
  color: #666;
}

.approval-search-row {
  display: flex;
  gap: 8px;
}

.approval-search-input {
  flex: 1;
  padding: 10px 12px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
}

.approval-search-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.approval-search-row .btn {
  padding: 10px 16px;
  font-size: 13px;
  white-space: nowrap;
}

/* Submitted Photos Section */
.approval-photos-section {
  margin: 16px 0;
}

.approval-photos-label {
  margin: 0 0 10px 0;
  font-size: 13px;
  color: #666;
}

.approval-photos-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.approval-photo-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.approval-photo-thumb:hover {
  border-color: var(--color-primary);
  transform: scale(1.05);
}

/* Action Buttons */
.approval-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
  flex-wrap: wrap;
}

.approval-actions .btn {
  padding: 10px 16px;
  font-size: 14px;
}

/* Photo Gallery Improvements */
.photo-gallery-item {
  margin-bottom: 16px;
}

.photo-gallery-image {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
  background: #f5f5f5;
}

/* Toast info style */
.toast.info {
  border-left: 4px solid #4285f4;
}

/* Inline Store Preview (below request card) */
.inline-preview {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px dashed var(--color-border);
  animation: slideDown 0.3s ease;
}

.inline-preview-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 16px 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.preview-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 30px;
  color: var(--color-text-muted);
}

.preview-loading .loading-spinner {
  width: 24px;
  height: 24px;
  margin: 0;
}

/* Inline Store Card (matches Importer store card size exactly) */
.inline-store-card {
  border: 2px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  background: white;
  margin-bottom: 16px;
  max-width: 300px; /* Same as Importer cards */
}

.inline-card-image-wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.inline-card-image-wrapper:hover .inline-card-image-overlay {
  opacity: 1;
}

.inline-card-image {
  width: 100%;
  height: 150px; /* Same as Importer cards */
  object-fit: cover;
  display: block;
  background: #eee;
}

.inline-card-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s;
  font-size: 14px;
}

.inline-card-content {
  padding: 16px;
}

.inline-card-name {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
}

.inline-card-address {
  margin: 0;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

/* Inline Source Badges */
.inline-sources {
  margin: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Inline Search Section */
.inline-search-section {
  margin: 16px 0;
  padding: 14px;
  background: var(--color-bg-light);
  border-radius: 8px;
  border: 1px solid var(--color-border);
}

.inline-search-section p {
  margin: 0 0 10px 0;
  font-size: 13px;
  color: var(--color-text-muted);
}

.inline-search-row {
  display: flex;
  gap: 8px;
}

.inline-search-input {
  flex: 1;
  padding: 10px 14px;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  background: white;
}

.inline-search-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.inline-search-row .btn {
  padding: 10px 16px;
  font-size: 13px;
  white-space: nowrap;
}

/* Inline Photos Section */
.inline-photos-section {
  margin: 16px 0;
}

.inline-photos-section p {
  margin: 0 0 10px 0;
  font-size: 13px;
  color: var(--color-text-muted);
}

.inline-photos-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.inline-photo-thumb {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  background: #eee;
}

.inline-photo-thumb:hover {
  border-color: var(--color-primary);
  transform: scale(1.05);
}

/* Inline Actions */
.inline-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 20px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.inline-actions .btn {
  padding: 12px 20px;
  font-size: 14px;
}

/* Collapse indicator on Review button */
.request-card-actions .btn-primary.reviewing {
  background: var(--color-text-muted);
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600;700&display=swap');
