/*! 
 * PMI-LA Case Study Challenge Stylesheet
 * Modern, responsive design for educational tech platform
 * Includes normalize.css v8.0.1 integration
 */

/* ==========================================================================
   CSS RESET & NORMALIZE (integrated)
   ========================================================================== */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body { margin: 0; }
main { display: block; }

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a { background-color: transparent; }
b, strong { font-weight: bolder; }
small { font-size: 80%; }

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input { overflow: visible; }
button, select { text-transform: none; }

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

details { display: block; }
summary { display: list-item; }
template { display: none; }
[hidden] { display: none; }

/* ==========================================================================
   DESIGN SYSTEM - CSS CUSTOM PROPERTIES
   ========================================================================== */
:root {
  /* Color System */
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;

  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  --success-500: #10b981;
  --warning-500: #f59e0b;
  --error-500: #ef4444;

  /* Typography */
  --font-family-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-family-mono: 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;

  /* Spacing Scale */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Layout */
  --sidebar-width: 320px;
  --content-max-width: 900px;
  --header-height: 60px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

/* ==========================================================================
   BASE STYLES
   ========================================================================== */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-sans);
  line-height: 1.6;
  color: var(--gray-800);
  background-color: var(--gray-50);
  display: flex;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   SIDEBAR NAVIGATION
   ========================================================================== */
/* Sidebar Navigation */
.sidebar {
    background-color: #edf7ff;  /* Very light blue background */
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    overflow-y: auto;
    padding: 20px;
    border-right: 1px solid #e0e0e0;
}

.sidebar h1 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-6);
  color: var(--primary-800);
  text-align: center;
  padding-bottom: var(--space-4);
  border-bottom: 4px solid var(--primary-200);
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sidebar ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar li {
  margin-bottom: var(--space-1);
}

.sidebar a {
  color: var(--gray-700);
  text-decoration: none;
  display: block;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  font-size: 0.9375rem;
  font-weight: 500;
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.sidebar a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.sidebar a:hover {
  color: var(--primary-700);
  transform: translateX(var(--space-1));
  border-left-color: var(--primary-400);
  box-shadow: var(--shadow-md);
}

.sidebar a:hover::before {
  opacity: 1;
}

.sidebar a.active {
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  color: var(--primary-800);
  font-weight: 600;
  border-left-color: var(--primary-600);
  box-shadow: var(--shadow-md);
}

.sidebar .sub-item {
  padding-left: var(--space-8);
  font-size: 0.875rem;
}

.sidebar .sub-item .sub-item {
  padding-left: var(--space-10);
  font-size: 0.8125rem;
}

/* Navigation Intro Section Styling */
.sidebar .intro-section a {
    display: block;
    padding: 8px 12px;
    border-radius: 4px;
    margin: 4px 0;
}

.sidebar .intro-section a:hover {
    background-color: #cce7ff;  /* Slightly darker blue on hover */
}

.sidebar .intro-section a[aria-current="page"],
.sidebar .intro-section a.active {
    background-color: #a0cdf7;  /* Darker blue for selected state */
}

/* Navigation Divider Styling */

/* Ensure divider spans full width */
.sidebar ul .nav-divider {
    margin-left: -20px;
    margin-right: -20px;
    padding: 0 20px;
}

/* ==========================================================================
   MAIN CONTENT LAYOUT
   ========================================================================== */
/* Main content layout adjustments */
.main-content {
    margin-left: 300px;  /* Width of nav sidebar */
    margin-right: 280px; /* Width of right sidebar */
    padding: var(--space-12) var(--space-8);
    display: flex;
    flex-direction: column;
    align-items: center;  /* Center children horizontally */
    width: calc(100% - 580px);  /* Total width minus both sidebars */
}

/* Card Components */
.main-content section {
    margin-bottom: 2rem;
    padding: var(--space-6);
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    width: 100%;  /* Take full width of the centered container */
}

.main-content section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
}

.main-content section:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

/* Button Components */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600));
  color: white;
  text-decoration: none;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 1.125rem;
  transition: all var(--transition-base);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--transition-slow);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--primary-600), var(--primary-700));
}

.button:hover::before {
  left: 100%;
}

.button:active {
  transform: translateY(0);
}

/* Navigation Buttons */
.navigation-buttons {
  display: flex;
  justify-content: center;
  margin-top: var(--space-8);
  gap: var(--space-8);
  width: 100%;
}

.navigation-buttons.single-button {
  justify-content: center;
}

.navigation-buttons .button.back {
  background: #dddddd;
  color: var(--gray-900);
}

/* Mystery Button System */
.scenario-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  margin: var(--space-8) 0;
  flex-wrap: wrap;
}

.mystery-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius-full);
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  min-width: 160px;
}

.mystery-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all var(--transition-slow);
  transform: translate(-50%, -50%);
}

.mystery-button:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.mystery-button:hover::before {
  width: 300px;
  height: 300px;
}

.mystery-button:active {
  transform: translateY(-2px);
}

.mystery-button.selected {
  background: linear-gradient(135deg, var(--success-500), #059669);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.scenario-content {
  margin-top: var(--space-8);
  padding: var(--space-8);
  background: linear-gradient(135deg, var(--primary-50), var(--gray-50));
  border-radius: var(--radius-xl);
  border: 1px solid var(--primary-200);
  animation: fadeInUp 0.5s ease-out;
  box-shadow: var(--shadow-md);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Placeholder Text */
.placeholder-text {
  color: var(--gray-500);
  font-style: italic;
  padding: var(--space-4);
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--gray-300);
}

/* Overview Components */
.overview {
  background: linear-gradient(135deg, var(--primary-50), var(--gray-50));
  border: 1px solid var(--primary-200);
}

.lifecycle-overview {
  margin-top: var(--space-8);
}

.lifecycle-stages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-6);
  margin-top: var(--space-6);
}

.stage {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: all var(--transition-base);
  text-align: center;
}

.stage:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stage h5 {
  color: var(--primary-700);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

/* Timeline Components */
.timeline-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-4);
  margin-top: var(--space-6);
}

.timeline-item {
  background: linear-gradient(135deg, var(--primary-50), white);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  border: 1px solid var(--primary-200);
  text-align: center;
  transition: all var(--transition-base);
}

.timeline-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}

.timeline-item h5 {
  color: var(--primary-700);
  font-weight: 700;
}

/* Links */
.discord-link {
  color: var(--primary-600);
  text-decoration: underline;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.discord-link:hover {
  color: var(--primary-700);
}

/* Start Button */
.start-button {
  text-align: center;
  margin-top: var(--space-16);
}

.start-button .button {
  font-size: 1.125rem;
  padding: var(--space-4) var(--space-10);
  background: linear-gradient(135deg, var(--success-500), #059669);
}

.start-button .button:hover {
  background: linear-gradient(135deg, #059669, #047857);
}

/* Remove custom guidelines styling */
.challenge-overview,
.module-components,
.rubric-sections {
    /* Reset to default styles */
    margin: 0;
    padding: 0;
}

.main-content ul,
.main-content ol {
    margin-left: 2rem;
}

/* Basic table styling */
.rubric-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.rubric-table th,
.rubric-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #ddd;
}

.rubric-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.rubric-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Content Table Styling */
.content-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.content-table td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}

.content-table tr:last-child td {
    border-bottom: none;
}

.content-table td:first-child {
    width: 25%;
    white-space: nowrap;
    color: #2d3748;
}

.content-table td:last-child {
    color: #4a5568;
}

.content-table tr:hover {
    background-color: #f7fafc;
}

/* Event Card Grid Styling */
.event-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.event-detail {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.event-detail strong {
    display: block;
    margin-bottom: 1rem;
    color: var(--primary-600);
    font-size: 1.1rem;
}

.event-detail p {
    margin: 0;
    line-height: 1.5;
}

/* Content Section Styling */
.content-section {
    margin-bottom: 2rem;
}

.section-content h2 {
    color: #2d3748;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #90cdf4;
}

.section-content h2:first-child {
    margin-top: 0;
}

.section-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.section-content ul {
    margin-bottom: 2rem;
}

/* Resource Category Styling */
.resource-category {
    margin-bottom: 2rem;
}

.resource-category h3 {
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.document-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;  /* Align items to the start of the container */
}

.document-links-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;  /* Align items to the start of the container */
}

.document-link {
    display: inline-flex;  /* Changed to inline-flex */
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;  /* Keep text in one line */
}

.document-link:hover {
    background-color: #edf2f7;
    border-color: #cbd5e0;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.document-link .icon {
    margin-right: 0.75rem;
    font-size: 1.25rem;
} 

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --sidebar-width: 280px;
  }
  
  .main-content {
    padding: var(--space-8) var(--space-6);
  }
  
  .lifecycle-stages {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* Mobile */
@media (max-width: 768px) {
  body {
    flex-direction: column;
  }
  
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
    order: 2;
    box-shadow: none;
    border-right: none;
    border-top: 1px solid var(--gray-200);
  }
  
  .main-content {
    margin-left: 0;
    padding: var(--space-6) var(--space-4);
    order: 1;
  }
  
  .main-content h1 {
    font-size: 2rem;
    margin-bottom: var(--space-6);
  }
  
  .mystery-button {
    min-width: 120px;
    padding: var(--space-3) var(--space-6);
    font-size: 1rem;
  }
  
  .scenario-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .lifecycle-stages {
    grid-template-columns: 1fr;
  }
  
  .timeline-breakdown {
    grid-template-columns: 1fr;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .main-content {
    padding: var(--space-4) var(--space-3);
  }
  
  .main-content section {
    padding: var(--space-6);
    margin-bottom: var(--space-8);
  }
  
  .navigation-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* ==========================================================================
   ACCESSIBILITY & FOCUS STATES
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.button:focus,
.mystery-button:focus,
.sidebar a:focus {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-500: #1d4ed8;
    --gray-700: #000000;
    --gray-800: #000000;
  }
} 

/* Right Sidebar */
.right-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background-color: #edf7ff;
    padding: 20px;
    border-left: 1px solid #e2e8f0;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.05);
}

/* Countdown Widget */
.countdown-widget {
    margin-top: 20px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.current-date {
    margin-bottom: 25px;
}

.date-display {
    text-align: left;
}

.date-display h3 {
    font-size: 1.0rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 4px;
}

.date-display p {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
}

.progress-section {
    padding: 15px 0;
}

.progress-container {
    margin-bottom: 25px;
}

.progress-label {
    font-size: 0.9rem;
    color: #4a5568;
    margin-bottom: 8px;
    font-weight: 500;
}

.progress-bar {
    width: 100%;
    height: 20px; /* Increased from 10px */
    background-color: #e2e8f0;
    border-radius: 10px; /* Increased to match new height */
    overflow: hidden;
    position: relative;
}

#progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4299e1, #2b6cb0);
    transition: width 0.5s ease;
    position: relative;
}

.progress-text {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.9rem; /* Increased from 0.8rem */
    color: white;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3); /* Enhanced text shadow */
    z-index: 1;
    padding: 0 6px; /* Added padding around text */
}

/* Add a dark background behind the text for better visibility when progress is low */
.progress-text::before {
    content: '';
    position: absolute;
    left: -4px;
    right: -4px;
    top: -4px;
    bottom: -4px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
    z-index: -1;
}

.countdown-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.next-module h4, .final-deadline h4 {
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 4px;
    font-weight: 700;
}

.next-module p, .final-deadline p {
    font-size: 0.9rem;
    color: #1a202c;
    font-weight: 600;
    line-height: 1.4;
}

/* Adjust main content margin for right sidebar */
.main-content {
    margin-left: 300px; /* Only nav sidebar width */
    margin-right: 300px; /* Right sidebar width + padding */
    padding: 20px;
}

.main-content h1 + h2 {
    margin-top: -10px; /* Reduce space between h1 and h2 */
}

/* Remove left sidebar styles */
.left-sidebar {
    display: none;
} 

/* Case Image Styling */
.case-image {
    margin: 2rem 0;
    text-align: center;
}

.overview-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
} 

/* Initiation Overview Styling */
.initiation-overview h3 {
    color: #2d3748;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.initiation-overview ul {
    margin-bottom: 2rem;
}

.initiation-overview ol {
    margin-top: 1.5rem;
    padding-left: 2.5rem;
}

.initiation-overview ol li {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.initiation-overview ol li strong {
    color: #2d3748;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
} 

/* Submission Section Styling */
.submission-section {
    margin-top: 2rem;
    padding: 0 1rem;
}

.submission-section .info-box {
    background: linear-gradient(135deg, var(--primary-50), white);
    padding: var(--space-6);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary-200);
    box-shadow: var(--shadow-md);
}

.submission-section h3 {
    color: var(--primary-800);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.submission-section h4 {
    color: var(--primary-700);
    font-size: 1.1rem;
    font-weight: 600;
    margin: var(--space-4) 0 var(--space-2);
}

.submission-section p {
    margin-bottom: var(--space-2);
    color: var(--gray-700);
}

.submission-section ol {
    margin: var(--space-4) 0;
    padding-left: var(--space-8);
}

.submission-section ol li {
    margin-bottom: var(--space-2);
    color: var(--gray-700);
}

/* Resource Section Styling */
.resource-category {
    margin-bottom: 2rem;
}

.resource-category h3 {
    color: #2d3748;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.document-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.document-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #2d3748;
    text-decoration: none;
    transition: all 0.2s ease;
}

.document-link:hover {
    background-color: #edf2f7;
    border-color: #cbd5e0;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.document-link .icon {
    margin-right: 0.75rem;
    font-size: 1.25rem;
} 