/* AURORA II Components CSS 
 * Specific styling for custom components and UI elements
 * Builds on the base theme in aurora-modern.css
 */

/* Dashboard Cards */
.stat-card {
  border-radius: var(--border-radius-lg);
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.stat-card .card-body {
  padding: 1.5rem;
}

.stat-card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: var(--primary);
  font-size: 1.75rem;
}

/* Sidebar Styles */
.sidebar {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-hover) 100%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.sidebar .nav-link {
  color: rgba(255, 255, 255, 0.8);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius);
  margin-bottom: 0.25rem;
  transition: all 0.2s ease;
}

.sidebar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateX(5px);
}

.sidebar .nav-link.active {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 500;
}

.sidebar .logo-container {
  margin-bottom: 1.5rem;
  padding: 0.5rem;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius);
}

.sidebar .logo-container img {
  background-color: white;
  border-radius: var(--border-radius-sm);
  padding: 0.25rem;
}

/* End of Aurora II Components CSS */
