/*
 * Authenticated User Stylesheet
 * Clean app-focused styles without marketing theme conflicts
 */

/* Import theme variables for authenticated users */
@import "theme.css";
/* Import core navigation styles for authenticated users */
@import "navigation.css";

/* Flash Messages Container */
.flash-messages-container {
  position: fixed;
  top: 80px;
  right: 20px;
  z-index: 1000;
  max-width: 400px;
  width: calc(100vw - 40px);
}

@media (max-width: 768px) {
  .flash-messages-container {
    top: 70px;
    right: 10px;
    left: 10px;
    width: calc(100vw - 20px);
    max-width: none;
  }
}

/* Theme Toggle Positioning for authenticated users */
.theme-toggle {
  position: fixed;
  top: 85px;
  right: 20px;
  z-index: 1001;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.theme-toggle:hover {
  background: var(--bg-card-hover);
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.theme-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
  transform: rotate(15deg);
}

@media (max-width: 768px) {
  .theme-toggle {
    width: 44px;
    height: 44px;
    top: 15px;
    right: 15px;
  }
  
  .theme-icon {
    font-size: 1.1rem;
  }
}