/* Preview Mode Styles */

/* Preview Overlay */
#preview-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(255, 255, 255, 0.9) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 9999 !important;
  border-radius: 8px;
  pointer-events: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Preview Mode Message */
.preview-mode-message {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  border: 2px solid #4CAF50;
  max-width: 300px;
}

.preview-mode-title {
  font-size: 1.3em;
  margin-bottom: 10px;
  color: #333;
  font-weight: bold;
}

.preview-mode-description {
  color: #666;
  margin-bottom: 10px;
  line-height: 1.4;
}

.preview-mode-subtitle {
  color: #4CAF50;
  font-size: 0.9em;
  margin: 0;
}

/* Board Interaction States */
.preview-mode-disabled {
  pointer-events: none !important;
}

.preview-mode-disabled .cell {
  pointer-events: none !important;
  cursor: not-allowed !important;
}

/* Responsive Design */
@media (max-width: 600px) {
  .preview-mode-message {
    max-width: 280px;
    padding: 15px;
  }
  
  .preview-mode-title {
    font-size: 1.2em;
  }
  
  .preview-mode-description {
    font-size: 14px;
  }
  
  .preview-mode-subtitle {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .preview-mode-message {
    max-width: 260px;
    padding: 12px;
  }
  
  .preview-mode-title {
    font-size: 1.1em;
    margin-bottom: 8px;
  }
  
  .preview-mode-description {
    font-size: 13px;
    margin-bottom: 8px;
  }
}