/* Header Container */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #0b2545; /* Dark blue background */
  }
  
  /* Logo Section */
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    width: 120px; /* Adjust size according to your logo */
    margin-right: 10px;
  }
  
  .help-center {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
  }
  
  /* Navigation Links */
  .nav-links a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 14px;
  }
  
  .nav-links a:hover {
    text-decoration: underline;
  }
  
  .dropdown-arrow {
    font-size: 12px;
  }
  
  /* Search Bar Styling */
  .search-bar {
    display: flex;
    justify-content: center;
    padding: 20px;
    background-color: #0b2545; /* Same dark blue background */
  }
  
  .search-bar input {
    width: 50%;
    padding: 10px;
    border-radius: 5px;
    border: none;
    font-size: 16px;
    background-color: #3a4a59;
    color: #fff;
  }
  
  .search-bar button {
    background-color: transparent;
    border: none;
    margin-left: -40px;
    color: #fff;
    cursor: pointer;
  }
  
  .search-bar button i {
    font-size: 16px;
  }

  

  /* Breadcrumb Styling */
.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .breadcrumb a {
    color: #0077cc;
    text-decoration: none;
  }
  
  .breadcrumb a:hover {
    text-decoration: underline;
  }
  
  .breadcrumb span {
    color: #555;
  }
  
  /* Article Header */
  .article-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
  }
  
  .article-header .text-muted {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  /* Article Content */
  .article-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
  }
  
  .article-content ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .article-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
  }

  


  /* Section Styling */
.ip-conflict-section {
    padding: 20px;
    font-family: Arial, sans-serif;
  }
  
  /* Article Content */
  .article-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  .article-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  
  .article-content ol li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
  }
  
  /* Related Articles Section */
  .related-articles {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    margin-top: 20px;
  }
  
  .related-articles h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .related-articles ul {
    list-style-type: none;
    padding: 0;
  }
  
  .related-articles ul li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
  }
  
  .related-articles ul li:last-child {
    border-bottom: none;
  }
  
  .related-articles ul li a {
    text-decoration: none;
    color: #4a67e0;
    font-size: 16px;
  }
  
  .related-articles ul li a:hover {
    text-decoration: underline;
  }

  



  /* Feedback Section Styling */
.feedback-section {
    background-color: #f5f5f5;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    margin-top: 20px;
  }
  
  .feedback-section p {
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
  }
  
  /* Emoji Styling */
  .feedback-emojis {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .feedback-emojis .emoji {
    font-size: 40px;
    cursor: pointer;
  }
  
  .feedback-emojis .emoji:hover {
    transform: scale(1.2);
    transition: transform 0.2s ease;
  }

  

  /* Footer Styling */
footer {
    background-color: #2c3e50; /* Dark background */
    padding: 40px 0;
    text-align: center;
  }
  
  .footer-container img {
    width: 150px; /* Adjust the size based on your logo */
  }
  
  footer img {
    display: inline-block;
  }
  