/* Base Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navigation */
.navbar {
    background-color: #f8f9fa !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    color: #3498db !important;
    font-weight: 800;
}

.nav-link {
    color: #3498db !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2980b9 !important;
}

/* Article Sections */
.article-section {
    margin-bottom: 2.5rem;
}

.article-section p {
    margin-bottom: 1.5rem;
}

/* Code Blocks */
.code-block {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
    overflow-x: auto;
    border-left: 4px solid #3498db;
}

/* Note Blocks */
.note-block {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
}

/* Sidebar */
.sidebar {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.sidebar-title {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #3498db;
}

.archive-list {
    list-style: none;
    padding: 0;
}

.archive-list li {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #dee2e6;
}

.archive-list li:last-child {
    border-bottom: none;
}

.archive-list a {
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-list a:hover {
    color: #2980b9;
}

/* Footer */
.footer {
    background-color: #f8f9fa;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 1px solid #dee2e6;
}

.footer h5 {
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: #3498db;
}

/* Social Buttons */
.social-buttons .btn-social {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.social-buttons .btn-social:hover {
    background-color: #3498db;
    border-color: #3498db;
    transform: translateY(-3px);
} 

.container {
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  body {
    margin: 0;
  }
  