/* Hackney Anaconda Intranet - Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Montserrat:wght@800;900&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Color Palette (Harmonious Modern Cyberpunk/Glass Theme) */
  --bg-gradient: linear-gradient(135deg, #0d0e12 0%, #151821 50%, #0a0b0e 100%);
  --accent-primary: #ff4757;      /* Anaconda Red */
  --accent-secondary: #2ed573;    /* Active Green */
  --accent-tertiary: #1e90ff;     /* Info Blue */
  --accent-glow: rgba(255, 71, 87, 0.45);
  
  /* Neutral scale */
  --neutral-100: #ffffff;
  --neutral-200: #f1f2f6;
  --neutral-300: #ced6e0;
  --neutral-400: #747d8c;
  --neutral-800: #2f3542;
  --neutral-900: #1e222b;
  
  /* Glassmorphism settings */
  --glass-bg: rgba(30, 34, 43, 0.65);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-glow: rgba(30, 34, 43, 0.35);
  --glass-blur: blur(12px);
  
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.5), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background: var(--bg-gradient);
  color: var(--neutral-100);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

/* Background Glowing Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.25;
  pointer-events: none;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: var(--accent-primary);
  top: -100px;
  right: -50px;
  animation: orbFloat 20s infinite alternate;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: var(--accent-tertiary);
  bottom: -50px;
  left: -50px;
  animation: orbFloat 15s infinite alternate-reverse;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(50px, 30px) scale(1.1); }
}

/* Base Layout & Wrapper */
.app-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Navbar / Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 100;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Official Club Logo Styling */
.club-logo {
  display: flex;
  flex-direction: column;
  line-height: 0.82;
  text-align: left;
  user-select: none;
}

.club-logo .logo-hackney {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
  color: #ffffff; /* Crisp white on dark background */
  margin: 0;
  padding: 0;
}

.club-logo .logo-anaconda {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
  color: #ff4757; /* Club brand Red */
  margin: 0;
  padding: 0;
}

.logo-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 4px;
}

.logo-title-sub {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--neutral-300);
  letter-spacing: -0.3px;
  text-transform: capitalize;
}

/* Header Specific Horizontal Logo Layout */
header .club-logo {
  flex-direction: row;
  align-items: center;
  gap: 7px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease;
}

header .club-logo:hover {
  transform: scale(1.02);
}

header .club-logo .logo-hackney,
header .club-logo .logo-anaconda {
  font-size: 1.3rem; /* Slightly larger for horizontal prominence */
  letter-spacing: -0.3px;
}

.user-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Buttons */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition-bounce);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #d63031 100%);
  color: white;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 71, 87, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--neutral-100);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* User Widget */
.user-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.35rem 1rem 0.35rem 0.5rem;
  border-radius: 50px;
}

.user-badge img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--accent-primary);
}

.user-badge span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Hero Section (Hello World POC) */
.hero-card {
  padding: 3rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hero-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

.hero-text {
  max-width: 650px;
}

.badge-tag {
  display: inline-block;
  background: rgba(255, 71, 87, 0.15);
  color: var(--accent-primary);
  border: 1px solid rgba(255, 71, 87, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
}

.hero-card h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--neutral-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-card p {
  color: var(--neutral-300);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-mascot {
  width: 250px;
  height: 250px;
  opacity: 0.85;
  filter: drop-shadow(0 0 15px rgba(255, 71, 87, 0.3));
  animation: snakeSway 6s infinite ease-in-out;
}

@keyframes snakeSway {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

/* Dashboard Grid */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.grid-card {
  padding: 2rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.grid-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(40, 45, 57, 0.8);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-primary);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.grid-card:nth-child(2) .card-icon { color: var(--accent-secondary); }
.grid-card:nth-child(3) .card-icon { color: var(--accent-tertiary); }

.card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.2rem;
}

.card-body {
  color: var(--neutral-300);
  font-size: 0.95rem;
  flex: 1;
}

.card-footer {
  margin-top: auto;
}

/* Auth Screens */
.auth-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 2rem;
}

.auth-card {
  max-width: 460px;
  width: 100%;
  padding: 3rem 2.5rem;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.auth-card-logo {
  transform: scale(1.4);
  margin: 1.5rem 0 0.5rem 0;
  text-align: center;
  align-items: center;
  filter: drop-shadow(0 0 16px rgba(255, 71, 87, 0.4));
}

.auth-card-logo .logo-hackney {
  font-size: 1.7rem;
}

.auth-card-logo .logo-anaconda {
  font-size: 1.7rem;
}

.auth-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
}

.auth-desc {
  color: var(--neutral-400);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* Notification & Warning Modals */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  animation: fadeIn 0.3s ease;
}

.modal-content {
  max-width: 480px;
  width: 100%;
  background: rgba(22, 22, 28, 0.95);
  border: 1px solid #ff4757;
  box-shadow: 0 10px 40px rgba(255, 71, 87, 0.3);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  animation: scaleIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-icon {
  width: 56px;
  height: 56px;
  color: var(--accent-primary);
  background: rgba(255, 71, 87, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--accent-primary);
  margin-bottom: 0.5rem;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ff4757;
}

.modal-desc {
  color: var(--neutral-300);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Footer styling */
footer {
  text-align: center;
  padding: 2rem;
  color: var(--neutral-400);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(13, 14, 18, 0.6);
  margin-top: auto;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Hide helper classes */
.hidden {
  display: none !important;
}

/* Responsive Overrides */
@media (max-width: 768px) {
  .app-container {
    padding: 1rem;
  }
  
  header {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    text-align: center;
  }
  
  .hero-card {
    flex-direction: column;
    padding: 2rem;
    text-align: center;
  }
  
  .hero-card h1 {
    font-size: 2.2rem;
  }
  
  .hero-mascot {
    width: 150px;
    height: 150px;
  }
}

/* Google Mock Account Selector Styles */
.mock-accounts-container {
  width: 100%;
  text-align: left;
  animation: fadeIn 0.4s ease;
  margin-top: 0.5rem;
}

.selector-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  color: var(--neutral-100);
}

.selector-subtitle {
  font-size: 0.9rem;
  color: var(--neutral-400);
  text-align: center;
  margin-bottom: 1.5rem;
}

.accounts-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

.account-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.account-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 71, 87, 0.3);
  transform: translateY(-2px);
}

.account-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary) 0%, #d63031 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 2px 8px var(--accent-glow);
}

.account-item:nth-child(2) .account-avatar {
  background: linear-gradient(135deg, var(--accent-primary) 0%, #ff6b81 100%);
}

.account-item:nth-child(3) .account-avatar {
  background: linear-gradient(135deg, var(--accent-secondary) 0%, #20bf6b 100%);
  box-shadow: 0 2px 8px rgba(46, 213, 115, 0.3);
}

.account-item:nth-child(4) .account-avatar {
  background: linear-gradient(135deg, var(--accent-tertiary) 0%, #0984e3 100%);
  box-shadow: 0 2px 8px rgba(30, 144, 255, 0.3);
}

.account-item:nth-child(5) .account-avatar {
  background: linear-gradient(135deg, var(--neutral-400) 0%, #2f3542 100%);
  box-shadow: none;
}

.account-info {
  display: flex;
  flex-direction: column;
}

.account-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-100);
}

.account-email {
  font-size: 0.8rem;
  color: var(--neutral-400);
}

@keyframes pulseHighlight {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.4);
    border-color: rgba(255, 71, 87, 0.5);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 15px 5px rgba(255, 71, 87, 0.7);
    border-color: rgba(255, 71, 87, 1);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 71, 87, 0);
    border-color: rgba(255, 75, 90, 0.2);
  }
}

.pulse-highlight {
  animation: pulseHighlight 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Google Official Sign-In Button Styles */
.btn-google-official {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #1f1f1f;
  border: 1px solid #dadce0;
  border-radius: 40px; /* Modern capsule shape */
  padding: 0 16px;
  height: 40px;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.218s, border-color 0.218s, box-shadow 0.218s;
  box-shadow: none;
  gap: 12px;
  outline: none;
}

.btn-google-official:hover {
  background-color: #f8f9fa;
  border-color: #d2d4d7;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3), 0 1px 3px 1px rgba(60,64,67,0.15);
}

.btn-google-official:focus {
  background-color: #ffffff;
  border-color: #1a73e8;
  box-shadow: 0 0 0 2px rgba(26,115,232,0.2);
}

.btn-google-official:active {
  background-color: #f1f3f4;
  border-color: #dadce0;
  box-shadow: 0 1px 2px 0 rgba(60,64,67,0.3);
}

/* Header button specific resizing */
#btn-login.btn-google-official {
  height: 36px;
  font-size: 13px;
  padding: 0 12px;
  gap: 8px;
}

/* User Profile Container & Google-Style Dropdown Card */
.user-profile-container {
  position: relative;
  display: inline-block;
}

.profile-avatar-btn {
  background: none;
  border: 2px solid transparent;
  padding: 2px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, border-color 0.2s;
  outline: none;
}

.profile-avatar-btn:hover,
.profile-avatar-btn:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-secondary);
}

.profile-avatar-btn img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.google-profile-card {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 320px;
  background: rgba(22, 22, 28, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  padding: 20px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: slideDownFade 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(16px);
}

@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-header-email {
  width: 100%;
  text-align: center;
  font-size: 0.85rem;
  color: var(--neutral-400);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 12px;
  margin-bottom: 16px;
  word-break: break-all;
}

.profile-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.large-avatar-container {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
}

.large-avatar-container img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(22, 22, 28, 1);
}

.profile-card-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-100);
  text-align: center;
}

.domain-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(46, 213, 115, 0.1);
  border: 1px solid rgba(46, 213, 115, 0.2);
  color: #2ed573;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.profile-card-footer {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.google-signout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--neutral-200);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 8px 24px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.google-signout-btn:hover {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border-color: var(--accent-primary);
  box-shadow: 0 0 10px rgba(255, 71, 87, 0.15);
}

/* Premium Loading Screen Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loader-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
}

.loader-ring {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid rgba(255, 71, 87, 0.08);
  border-top-color: var(--accent-primary);
  border-right-color: var(--accent-secondary);
  animation: spin 1s linear infinite;
  box-shadow: 0 0 20px rgba(255, 71, 87, 0.1);
}

.loader-logo {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.1;
}

.loader-logo .logo-hackney {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: white;
  font-size: 0.75rem;
  letter-spacing: -0.2px;
}

.loader-logo .logo-anaconda {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  color: var(--accent-primary);
  font-size: 0.75rem;
  letter-spacing: -0.2px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* =========================================================================
   6. SportsEngine GoMotion Exporter Styling
   ========================================================================= */
.badge-status-inactive, .badge-status-active {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--glass-border);
}
.badge-status-inactive {
  color: var(--neutral-400);
}
.badge-status-active {
  color: var(--accent-secondary);
  border-color: rgba(46, 213, 115, 0.3);
  box-shadow: 0 0 10px rgba(46, 213, 115, 0.1);
}
.badge-status-inactive .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neutral-400);
}
.badge-status-active .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-secondary);
  box-shadow: 0 0 8px var(--accent-secondary);
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.5; }
}

.reports-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.report-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  transition: var(--transition-smooth);
}
.report-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}
.report-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.report-month {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--neutral-100);
}
.report-date {
  font-size: 0.75rem;
  color: var(--neutral-400);
}
.report-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}
.report-status-success {
  color: var(--accent-secondary);
  background: rgba(46, 213, 115, 0.1);
  border: 1px solid rgba(46, 213, 115, 0.2);
}
.report-status-failed {
  color: var(--accent-primary);
  background: rgba(255, 71, 87, 0.1);
  border: 1px solid rgba(255, 71, 87, 0.2);
}
.report-status-pending {
  color: var(--accent-tertiary);
  background: rgba(30, 144, 255, 0.1);
  border: 1px solid rgba(30, 144, 255, 0.2);
}
.btn-download-report {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  color: var(--neutral-200);
  transition: var(--transition-bounce);
  cursor: pointer;
}
.btn-download-report:hover {
  background: var(--accent-secondary);
  color: var(--neutral-900);
  border-color: var(--accent-secondary);
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(46, 213, 115, 0.3);
}

.report-list-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  color: var(--neutral-400);
  font-size: 0.9rem;
  gap: 12px;
  text-align: center;
}
.pulse-loader {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.sync-icon-spin.active {
  animation: spin 1s linear infinite;
}

