/* skeleton.css - DaRead App Shell Styles */

@media (max-width: 767px) {
  #root {
    padding-bottom: 68px;
  }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* App Shell Skeleton CSS */
.app-skeleton-overlay {
  position: fixed;
  inset: 0;
  background-color: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.app-skeleton-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(245, 158, 11, 0.2);
  border-top: 4px solid #f59e0b;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 1rem;
}

.app-skeleton-text {
  color: #71717a;
  font-family: sans-serif;
  font-size: 14px;
  letter-spacing: 0.5px;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
