.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;
} 
/* 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.
 *


 */
