/* WKT Accountability Project - Shared Styles */

:root {
  --navy: #05192D;
  --red: #FF004D;
  --light: #f8f9fa;
  --gray: #64748b;
  --green: #22c55e;
  --blue: #3b82f6;
  --amber: #f59e0b;
  --purple: #8b5cf6;
  --sidebar-width: 280px;
}

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

body {
  font-family: 'Roboto', sans-serif;
  color: #1e293b;
  line-height: 1.6;
  background: #fafbfc;
  display: flex;
  min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: var(--sidebar-width);
  background: var(--navy);
  color: white;
  overflow-y: auto;
  z-index: 1000;
}

.sidebar-header {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.sidebar-header .subtitle {
  font-size: 0.85rem;
  opacity: 0.7;
  font-weight: 300;
}

.nav-section {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-section-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
  padding: 0 20px 12px;
  font-weight: 600;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.nav-link:hover {
  background: rgba(255,255,255,0.1);
  color: white;
}

.nav-link.active {
  background: rgba(255,0,77,0.15);
  color: white;
  border-left-color: var(--red);
  font-weight: 500;
}

.nav-icon {
  margin-right: 12px;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.status-badge {
  margin-left: auto;
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 10px;
  font-weight: 600;
}

.status-approved { background: rgba(34,197,94,0.2); color: #22c55e; }
.status-workshop { background: rgba(245,158,11,0.2); color: #f59e0b; }
.status-outline { background: rgba(148,163,184,0.2); color: #94a3b8; }
.status-pending { background: rgba(59,130,246,0.2); color: #3b82f6; }

/* Main Content */
.main-content {
  margin-left: var(--sidebar-width);
  flex: 1;
  padding: 40px 48px 80px;
  max-width: 1400px;
}

.page-header {
  margin-bottom: 48px;
}

.page-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  font-weight: 300;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.breadcrumb a {
  color: var(--red);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Cards */
.card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #f1f5f9;
}

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

/* Status Banners */
.banner {
  padding: 20px 24px;
  margin-bottom: 32px;
  border-radius: 12px;
  border-left: 5px solid;
}

.banner-workshop {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: white;
  border-color: #991b1b;
  text-align: center;
}

.banner-info {
  background: #eff6ff;
  border-color: var(--blue);
  color: #1e3a8a;
}

.banner-warning {
  background: #fffbeb;
  border-color: var(--amber);
  color: #78350f;
}

.banner h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Utility */
.divider {
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, transparent 100%);
  margin: 48px 0;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .sidebar {
    transform: translateX(-100%);
  }
  
  .main-content {
    margin-left: 0;
    padding: 32px 24px;
  }
}
