.artifacts-list--collapsed .js-collapsible-details {
  display: none;
} 
/* Mobile Preview Styles */

.mobile-preview-body {
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.mobile-preview-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
}

/* Mobile Device Frame */
.mobile-device-frame {
  width: 375px;
  height: 667px;
  background-color: #ffffff;
  border-radius: 36px;
  box-shadow: 0 0 0 10px #111111, 0 0 0 11px #222222, 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  position: relative;
  transform-origin: center;
  transition: all 0.5s ease;
}

.mobile-device-frame.landscape {
  transform: rotate(90deg);
  width: 667px;
  height: 375px;
  margin: 146px 0;
}

.mobile-device-header {
  height: 30px;
  background-color: #000000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  color: #ffffff;
  position: relative;
  z-index: 10;
}

.device-time {
  font-weight: bold;
  font-size: 14px;
}

.device-notch {
  width: 150px;
  height: 20px;
  background-color: #000000;
  border-radius: 0 0 10px 10px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.device-status {
  display: flex;
  gap: 6px;
  font-size: 14px;
}

.mobile-device-screen {
  height: calc(100% - 30px - 20px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-device-home-button {
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000000;
}

.mobile-device-home-button::after {
  content: "";
  width: 100px;
  height: 4px;
  background-color: #ffffff;
  border-radius: 2px;
}

/* Mobile App UI */
.mobile-app-header {
  height: 50px;
  background-color: #00a86b;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.app-logo {
  font-size: 20px;
  font-weight: bold;
}

.mobile-app-content {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 60px;
  transition: opacity 0.3s ease;
}

.mobile-app-content.loading {
  opacity: 0.5;
}

.mobile-app-content.speed-edge {
  transition-duration: 1s;
}

.mobile-app-footer {
  height: 60px;
  background-color: #ffffff;
  border-top: 1px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
}

.app-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  color: #666666;
}

.app-nav-item.active {
  color: #00a86b;
}

.app-nav-item i {
  font-size: 20px;
  margin-bottom: 4px;
}

.app-nav-item span {
  font-size: 12px;
}

/* Preview Controls */
.preview-controls {
  margin-top: 20px;
  width: 375px;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.preview-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
}

.preview-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.connection-speed-selector {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* Player Quest View */
.player-quest-view {
  padding: 15px;
}

.quest-header {
  margin-bottom: 20px;
}

.quest-title {
  font-size: 22px;
  margin: 0 0 10px 0;
  color: #333333;
}

.quest-meta {
  margin-bottom: 10px;
  font-size: 14px;
  color: #666666;
}

.quest-type {
  background-color: #e0f7ee;
  color: #00a86b;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 10px;
}

.quest-location {
  color: #666666;
}

.quest-progress {
  margin-top: 10px;
}

.progress-text {
  font-size: 14px;
  margin-bottom: 5px;
  color: #666666;
}

.progress-bar {
  height: 8px;
  background-color: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background-color: #00a86b;
}

/* Map View */
.quest-map-view {
  margin-bottom: 20px;
}

.map-container {
  height: 180px;
  background-color: #e9ecef;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(120deg, #84fab0 0%, #8fd3f4 100%);
  opacity: 0.3;
  position: relative;
}

.map-pin {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border: 2px solid #00a86b;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.map-pin.current-location {
  background-color: #3366ff;
  border-color: #ffffff;
  bottom: 30px;
  left: 30px;
}

.map-pin.current-location i {
  color: #ffffff;
  font-size: 12px;
}

.pin-number {
  font-size: 12px;
  font-weight: bold;
  color: #00a86b;
}

/* Location List */
.quest-location-list {
  margin-bottom: 20px;
}

.quest-location-list h2 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333333;
}

.location-card {
  display: flex;
  background-color: #ffffff;
  border-radius: 8px;
  margin-bottom: 12px;
  padding: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.location-card.active {
  border-left: 4px solid #00a86b;
}

.location-card.locked {
  opacity: 0.7;
}

.location-status {
  margin-right: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.status-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 4px;
}

.location-card.active .status-icon {
  background-color: #e0f7ee;
  color: #00a86b;
}

.location-number {
  font-weight: bold;
  font-size: 14px;
  color: #666666;
}

.location-details {
  flex: 1;
}

.location-name {
  font-size: 16px;
  margin: 0 0 5px 0;
  color: #333333;
}

.location-type {
  font-size: 12px;
  color: #888888;
  margin-bottom: 10px;
}

.location-challenge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f9f9f9;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 8px;
}

.challenge-type {
  font-size: 14px;
  color: #555555;
}

.challenge-action button {
  background-color: #00a86b;
  border-color: #00a86b;
}

.no-locations-message {
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  text-align: center;
  color: #888888;
}

/* Player Info Box */
.player-info-box {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 15px;
}

.player-info-box h3 {
  font-size: 16px;
  margin: 0 0 12px 0;
  color: #333333;
}

.player-stats {
  display: flex;
  justify-content: space-around;
}

.stat-item {
  text-align: center;
}

.stat-value {
  font-size: 20px;
  font-weight: bold;
  color: #333333;
}

.stat-label {
  font-size: 12px;
  color: #888888;
} 
/* Onboarding Styles */

/* Onboarding Container */
.onboarding-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.onboarding-header {
  padding: 20px 40px;
  border-bottom: 1px solid #f0f0f0;
}

.step-indicator {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  position: relative;
}

.step-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.step-text {
  background-color: #e0f7ee;
  color: #00a86b;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.close-button {
  position: absolute;
  right: 0;
  top: 0;
  background: none;
  border: none;
  font-size: 24px;
  color: #999;
  cursor: pointer;
}

.onboarding-title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 5px 0;
  color: #333333;
}

.onboarding-subtitle {
  font-size: 16px;
  color: #666666;
  margin: 0 0 15px 0;
}

.progress-bar {
  height: 6px;
  background-color: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background-color: #00a86b;
  transition: width 0.3s ease;
}

.onboarding-body {
  padding: 30px 40px;
}

/* Info Boxes */
.info-box {
  display: flex;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.info-box-primary {
  background-color: #e0f7ee;
  color: #00a86b;
}

.info-box-info {
  background-color: #e6f4ff;
  color: #0066cc;
}

.info-box-warning {
  background-color: #fff8e0;
  color: #e6a700;
}

.info-box-purple {
  background-color: #f0e7ff;
  color: #6e00c8;
}

.info-box-success {
  background-color: #e0f7ee;
  color: #00a86b;
}

.info-icon {
  font-size: 24px;
  margin-right: 15px;
}

.info-content h3 {
  font-size: 18px;
  margin: 0 0 5px 0;
}

.info-content p {
  margin: 0;
  font-size: 15px;
}

/* Form Elements */
.onboarding-form {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #333333;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.form-text {
  font-size: 13px;
  color: #888888;
  margin-top: 5px;
}

/* Location Display */
.location-display {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 6px;
  margin-bottom: 8px;
}

.location-icon {
  font-size: 20px;
  color: #00a86b;
  margin-right: 15px;
}

.location-name {
  font-weight: 500;
  color: #333333;
  flex: 1;
}

.poi-badge {
  background-color: #00a86b;
  color: white;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

.location-help-text {
  font-size: 13px;
  color: #666666;
  margin-top: 8px;
}

/* Quest Types Grid */
.quest-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.quest-type-option {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.quest-type-option:hover {
  border-color: #00a86b;
  background-color: #f9f9f9;
}

.quest-type-option.selected {
  border-color: #00a86b;
  background-color: #e0f7ee;
}

.quest-type-radio {
  position: absolute;
  opacity: 0;
}

.quest-type-label {
  margin: 0;
  cursor: pointer;
  width: 100%;
  display: block;
}

.quest-type-icon {
  font-size: 24px;
  color: #00a86b;
  margin-bottom: 10px;
}

.quest-type-option h3 {
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #333333;
}

.quest-type-option p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

/* Quest Examples */
.quest-examples {
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 30px;
}

.quest-examples h3 {
  font-size: 16px;
  margin: 0 0 15px 0;
  color: #333333;
}

.examples-list {
  margin: 0;
  padding: 0 0 0 20px;
}

.examples-list li {
  margin-bottom: 8px;
  color: #666666;
}

/* POI Selection */
.poi-selection-container {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.poi-map-container {
  flex: 1;
  min-height: 400px;
}

.poi-map {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.poi-list-container {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.poi-list-header {
  margin-bottom: 15px;
}

.poi-list-header h3 {
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #333333;
}

.poi-list-filter {
  margin-bottom: 10px;
}

.poi-list {
  flex: 1;
  overflow-y: auto;
  max-height: 320px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
}

.poi-item {
  display: flex;
  padding: 12px 15px;
  border-bottom: 1px solid #f0f0f0;
}

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

.poi-checkbox {
  margin-right: 15px;
  display: flex;
  align-items: center;
}

.poi-select-checkbox {
  width: 18px;
  height: 18px;
}

.poi-details {
  flex: 1;
}

.poi-label {
  margin: 0;
  cursor: pointer;
  width: 100%;
  display: block;
}

.poi-name {
  font-weight: 500;
  margin-bottom: 3px;
  color: #333333;
}

.poi-type {
  font-size: 12px;
  color: #888888;
  margin-bottom: 3px;
}

.poi-address {
  font-size: 12px;
  color: #888888;
}

.poi-selection-summary {
  margin-top: 10px;
  text-align: center;
  color: #666666;
  font-size: 14px;
}

.selected-count {
  font-weight: 500;
}

.selection-hint {
  font-size: 12px;
  color: #888888;
  margin-left: 5px;
}

/* Challenge Types */
.challenge-types-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}

.default-challenge-description {
  margin-bottom: 20px;
  color: #666666;
}

.challenge-type-option {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.challenge-type-option:hover {
  border-color: #00a86b;
  background-color: #f9f9f9;
}

.challenge-type-option.selected {
  border-color: #00a86b;
  background-color: #e0f7ee;
}

.challenge-type-radio {
  position: absolute;
  opacity: 0;
}

.challenge-type-label {
  margin: 0;
  cursor: pointer;
  width: 100%;
  display: block;
}

.challenge-type-icon {
  font-size: 20px;
  color: #00a86b;
  margin-bottom: 8px;
}

.challenge-type-option h4 {
  font-size: 16px;
  margin: 0 0 8px 0;
  color: #333333;
}

.challenge-type-option p {
  font-size: 13px;
  color: #666666;
  margin: 0;
}

/* Additional Options */
.additional-options {
  margin-bottom: 30px;
}

.additional-options h3 {
  font-size: 18px;
  margin: 0 0 15px 0;
  color: #333333;
}

.option-toggles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.option-toggle {
  display: flex;
  align-items: center;
}

.toggle-checkbox {
  margin-right: 10px;
  width: 18px;
  height: 18px;
}

.toggle-label {
  font-weight: 500;
  color: #333333;
  display: block;
  margin-bottom: 2px;
}

.toggle-hint {
  font-size: 12px;
  color: #888888;
  display: block;
}

/* Quest Summary */
.quest-summary {
  margin-bottom: 30px;
}

.quest-summary h3 {
  font-size: 18px;
  margin: 0 0 15px 0;
  color: #333333;
}

.quest-details-table {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.quest-detail-row {
  display: flex;
  border-bottom: 1px solid #f0f0f0;
}

.quest-detail-row:last-child {
  border-bottom: none;
}

.quest-detail-label {
  flex: 0 0 150px;
  background-color: #f9f9f9;
  padding: 12px 15px;
  font-weight: 500;
  color: #666666;
}

.quest-detail-value {
  flex: 1;
  padding: 12px 15px;
  color: #333333;
}

/* Selected Locations */
.selected-locations {
  margin-bottom: 30px;
}

.selected-locations h3 {
  font-size: 18px;
  margin: 0 0 15px 0;
  color: #333333;
}

.locations-list {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.location-item {
  display: flex;
  padding: 12px 15px;
  border-bottom: 1px solid #f0f0f0;
}

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

.location-number {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: #00a86b;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  margin-right: 15px;
}

.location-details {
  flex: 1;
}

.location-name {
  font-weight: 500;
  margin-bottom: 3px;
  color: #333333;
}

.location-type {
  font-size: 12px;
  color: #888888;
}

/* Mobile Preview Teaser */
.mobile-preview-teaser {
  margin-bottom: 30px;
}

.mobile-preview-teaser h3 {
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #333333;
}

.mobile-preview-teaser p {
  color: #666666;
  margin-bottom: 15px;
}

.mobile-frame {
  width: 200px;
  height: 380px;
  background-color: #111111;
  border-radius: 24px;
  margin: 0 auto;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-screen {
  background-color: #f0f0f0;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.preview-placeholder {
  text-align: center;
  color: #888888;
  padding: 20px;
}

.preview-placeholder i {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}

.preview-placeholder span {
  font-size: 12px;
}

/* Buttons & Actions */
.onboarding-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.btn {
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-outline-secondary {
  background-color: transparent;
  border: 1px solid #666666;
  color: #666666;
}

.btn-outline-secondary:hover {
  background-color: #f0f0f0;
}

.btn-primary {
  background-color: #00a86b;
  border: 1px solid #00a86b;
  color: white;
}

.btn-primary:hover {
  background-color: #008f5a;
  border-color: #008f5a;
}

.btn-success {
  background-color: #28a745;
  border: 1px solid #28a745;
  color: white;
}

.btn-success:hover {
  background-color: #218838;
  border-color: #218838;
}

.with-icon::after {
  content: "→";
  margin-left: 8px;
}

/* Welcome Screen */
.onboarding-welcome-container {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.welcome-header {
  text-align: center;
  margin-bottom: 40px;
}

.welcome-header h1 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #333333;
}

.welcome-subtitle {
  font-size: 18px;
  color: #666666;
}

.welcome-content {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}

.welcome-card {
  flex: 1;
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card-icon {
  font-size: 36px;
  color: #00a86b;
  margin-bottom: 20px;
}

.welcome-card h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333333;
}

.welcome-card p {
  color: #666666;
  margin-bottom: 25px;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 18px;
}

.btn-block {
  display: block;
  width: 100%;
}

.welcome-features {
  flex: 1;
}

.welcome-features h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  padding: 15px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #e0f7ee;
  color: #00a86b;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin-right: 15px;
}

.feature-text {
  font-weight: 500;
  color: #333333;
}

.welcome-examples {
  margin-bottom: 50px;
}

.welcome-examples h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333333;
}

.examples-row {
  display: flex;
  gap: 20px;
}

.example-card {
  flex: 1;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.example-image {
  height: 150px;
  overflow: hidden;
}

.example-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.example-details {
  padding: 15px;
}

.example-details h4 {
  font-size: 18px;
  margin: 0 0 10px 0;
  color: #333333;
}

.example-details p {
  color: #666666;
  margin: 0;
  font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .onboarding-container {
    border-radius: 0;
    box-shadow: none;
  }
  
  .onboarding-header {
    padding: 15px 20px;
  }
  
  .onboarding-body {
    padding: 20px;
  }
  
  .quest-types-grid,
  .challenge-types-grid,
  .option-toggles {
    grid-template-columns: 1fr;
  }
  
  .poi-selection-container {
    flex-direction: column;
  }
  
  .welcome-content {
    flex-direction: column;
  }
  
  .examples-row {
    flex-direction: column;
  }
} 
/* Simple test mode styles to bypass Sass compilation errors */
.test-mode {
  background-color: #f0f0f0;
} 
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
