.weekly-wrapper {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
  padding: 12px;
}
.container {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.header {
  text-align: center;
  padding: 30px 20px;
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  color: white;
}
.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}
.header p {
  font-size: 1.1rem;
  opacity: 0.9;
}
.controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  background: #f8f9fa;
  border-bottom: 1px solid #eaecef;
  flex-wrap: wrap;
}
.btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #3498db;
  color: white;
  text-decoration: none;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}
.btn-secondary {
  background: #95a5a6;
}
.btn-secondary:hover {
  background: #7f8c8d;
}
.stats {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background: white;
  border-bottom: 1px solid #eaecef;
  flex-wrap: wrap;
}
.stat-card {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  min-width: 120px;
}
.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: #3498db;
}
.stat-label {
  font-size: 0.9rem;
  color: #6c757d;
}
.content-display {
  padding: 30px;
  min-height: 400px;
}
.content-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eaecef;
}
.issue-badge {
  background: #3498db;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.content-type {
  background: #e74c3c;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}
.content-header {
  margin-bottom: 25px;
  border-bottom: 1px solid #eaecef;
}
.content-header-title {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.content-header h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  line-height: 1.3;
}
.content-info {
  display: flex;
  gap: 15px;
  font-size: 0.9rem;
  color: #6c757d;
}
.markdown-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #2c3e50;
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}
.markdown-content img {
  width: 100%;
}
.markdown-content h1,
.markdown-content h2,
.markdown-content h3 {
  margin-top: 1.5em;
  margin-bottom: 0.5em;
  color: #2c3e50;
}
.markdown-content p {
  margin-bottom: 1.2em;
}
.markdown-content ul,
.markdown-content ol {
  margin-left: 1.5em;
  margin-bottom: 1.2em;
}
.markdown-content li {
  margin-bottom: 0.5em;
}
.markdown-content blockquote {
  border-left: 4px solid #3498db;
  padding-left: 1em;
  margin-left: 0;
  margin-bottom: 1.2em;
  color: #6c757d;
  font-style: italic;
}
.markdown-content code {
  background: #e9ecef;
  padding: 2px 6px;
  border-radius: 4px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}
.markdown-content pre {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 1em;
  border-radius: 8px;
  overflow-x: auto;
  margin-bottom: 1.2em;
}
.markdown-content pre code {
  background: none;
  padding: 0;
  border-radius: 0;
}
.markdown-content a {
  color: #3498db;
  text-decoration: none;
}
.markdown-content a:hover {
  text-decoration: underline;
}
.content-actions {
  display: flex;
  gap: 10px;
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid #eaecef;
  justify-content: center;
}
.btn-outline {
  background: transparent;
  border: 2px solid #3498db;
  color: #3498db;
}
.btn-outline:hover {
  background: #3498db;
  color: white;
}
.footer {
  text-align: center;
  padding: 20px;
  color: #6c757d;
  font-size: 0.9rem;
  background: #f8f9fa;
  border-top: 1px solid #eaecef;
}
@media (max-width: 768px) {
.header h1 {
    font-size: 1.5rem;
}
.controls {
    flex-direction: column;
    align-items: center;
}
.stats {
    gap: 10px;
}
.stat-card {
    min-width: 100px;
    padding: 10px;
}
.content-display {
    padding: 8px;
}
.content-header {
    margin-bottom: 8px;
}
.content-meta {
    flex-direction: column;
    gap: 10px;
}
.content-actions {
    flex-wrap: wrap;
}
}
