 .cr-section {
  margin: auto;
  line-height: 1.6;
}

.cr-section .important-links td {
  color: #ff0000;
  font-size: 1.1rem;
}

.cr-section .important-links td > a {
  color: #003366;
}

.cr-section h1 {
  color: #003399;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 20px;
}

.cr-section h2 {
  color: #008000;
  font-size: 1.3rem;
  text-align: center;
}

.cr-section .red,
.cr-section i {
  color: #ff0000;
}

.cr-section h3 {
  color: #008000;
  margin-top: 20px;
  font-size: 1.1rem;
  text-align: left;
}

.cr-section table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
}

.cr-section .center,
.cr-section h4 {
  text-align: center;
}

.cr-section .green {
  color: #008000;
}

.cr-section th,
.cr-section td {
  text-align: left;
  padding: 12px 15px;
  border: 1px solid #ccc;
  vertical-align: top;
}

.cr-section th {
  background: #f0f4f8;
  font-weight: bold;
}

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

.cr-section tr:hover {
  background-color: #f0f8ff;
}

.cr-section a {
  color: #003366;
  font-weight: bold;
  text-decoration: none;
}

.cr-section a:hover {
  text-decoration: underline;
}

.cr-section ul {
  padding-left: 20px;
}

.cr-section ul li {
  margin-bottom: 6px;
} 
    
    
    
    /* Post Tags Section */
.post-tags{
        padding: 20px 10px 20px;
}

.post-tags strong {
  font-size: 1.2rem;
  margin-bottom: 12px;
  border-left: 4px solid #007bff;
  padding-left: 8px;
  color: #333;
}

.tag-link {
     background-color: #e9ecef;
    color: #007bff;
    padding: 6px 10px;
    margin: 5px 5px 0 0;
    display: inline-block;
    font-size: 14px;
    text-decoration: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.tag-link:hover {
  background-color: #007bff;
  color: #fff;
}

/* Related Posts Section */
.related-posts {
      padding: 20px 10px 20px;
}

.related-posts h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  border-left: 4px solid #007bff;
  padding-left: 8px;
  color: #333;
}

.related-posts ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.related-posts ul li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.related-posts ul li:last-child {
  border-bottom: none;
}

.related-posts ul li::before {
  content: "➤";
  color: #007bff;
  margin-right: 8px;
  font-size: 0.9rem;
}

.related-posts ul li a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.related-posts ul li a:hover {
  color: #0056b3;
  text-decoration: underline;
}