.article-container {
    font-family: 'Inter', sans-serif; 
    color: #333; 
    background-color: #f9f9f9; 
    margin: 0;
    padding: 0;
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 40px; 
    background-color: #fff; 
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); 
}
.article-container img{
  max-width:100%;
}

.article-container h1 {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #222; 
    font-weight: 700; 
}

.article-container h2 {
    font-size: 26px;
    line-height: 1.4;
    margin: 32px 0 20px;
    color: #333;
    font-weight: 700;
}

.article-container h3 {
    font-size: 22px;
    line-height: 1.5;
    margin: 24px 0 16px;
    color: #333;
    font-weight: 700;
}

.article-container h4 {
    font-size: 20px;
    line-height: 1.6;
    margin: 18px 0 12px;
    color: #333;
    font-weight: 700;
}

.article-container h5 {
    font-size: 20px;
    line-height: 1.6;
    margin: 18px 0 12px;
    color: #333;
    font-weight: 700;
}

.article-container p {
    text-indent: 2em;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: justify; 
}


.table-container{
  width: 100%;
  overflow-x: auto; 
  padding: 16px;
  background-color: #f8f9fa; 
  border-radius: 12px; 
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); 
}

.article-container table {
  width: max-content; 
  border-collapse: collapse; 
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #333;
}

.article-container table thead {
  background-color: #f0f2f5; 
}

.article-container table th {
  padding: 12px 16px;
  text-align: left; 
  font-weight: 600;
  border-bottom: 2px solid #e0e0e0; 
}

.article-container table td {
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0; 
  line-height: 1.6;
}

/* Ã¦â€“â€˜Ã©Â©Â¬Ã§ÂºÂ¹Ã¦â€¢Ë†Ã¦Å¾Å“ */
.article-container table tbody tr:nth-child(even) {
  background-color: #ffffff; 
}

.article-container table tbody tr:nth-child(odd) {
  background-color: #f9f9f9; 
}

.article-container table tbody tr:hover {
  background-color: #f5f7fa; 
  cursor: pointer; 
}

.table-container::-webkit-scrollbar {
  height: 6px; 
}

.table-container::-webkit-scrollbar-track {
  background-color: #f0f0f0; 
  border-radius: 3px;
}

.table-container::-webkit-scrollbar-thumb {
  background-color: #646cff; 
  border-radius: 3px;
}

@media (max-width: 768px) {
  .table-container {
    padding: 8px;
  }
  
  .article-container table th,
  .article-container table td {
    padding: 8px 12px;
    font-size: 14px;
  }
}
