/* Main CSS for Blog System */

/* Add some padding for the navigation bar */
body {
    padding-top: 64px;
  }
  
  /* Style for article content */
  .article-content {
    line-height: 1.6;
    padding: 16px 0;
  }
  
  .article-content h1, 
  .article-content h2, 
  .article-content h3, 
  .article-content h4 {
    color: #009688;
    margin-top: 24px;
  }
  
  .article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 16px auto;
  }
  
  .article-content code {
    background-color: #f1f1f1;
    padding: 2px 4px;
    border-radius: 4px;
  }
  
  .article-content pre {
    background-color: #f1f1f1;
    padding: 16px;
    overflow-x: auto;
    border-radius: 4px;
  }
  
  /* Admin styles */
  .admin-tab {
    min-height: 400px;
  }
  
  #articleContent {
    min-height: 300px;
  }
  
  /* Tag styling */
  .w3-tag {
    margin-right: 8px;
  }