body {
    margin: 0;
    font-family: Arial, sans-serif;
}

.search-section {
    background-color: #0b2a4a;
    padding: 40px 0;
    position: relative;
    text-align: center;
}

.search-container {
    width: 80%;
    margin: 0 auto;
}

.header-text {
    display: flex;
    justify-content: space-between;
    color: white;
}

.header-text h1 {
    font-size: 24px;
}

.header-text .right-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-text .right-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.header-text .right-links a:hover {
    text-decoration: underline;
}

.search-bar-wrapper {
    margin-top: 20px;
}

.search-bar {
    width: 100%;
    max-width: 600px;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    outline: none;
}

.search-bar::placeholder {
    color: #666;
}

.arrow-down {
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    margin-left: 5px;
}

.search-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('your-background-image-url'); /* Replace with your grid background if necessary */
    opacity: 0.1;
    pointer-events: none;
}






body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.status-section {
    padding: 20px;
    background-color: #f9f9f9;
}

.breadcrumbs {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: #4a90e2;
    text-decoration: none;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.status-content h1 {
    font-size: 28px;
    color: #333;
}

.status-content .updated-time {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.status-content p {
    font-size: 16px;
    color: #333;
}

.status-content a {
    color: #4a90e2;
    text-decoration: none;
}

.status-content a:hover {
    text-decoration: underline;
}






.related-articles {
    font-family: Arial, sans-serif;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .related-articles h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  
  .related-articles ul {
    list-style-type: none;
    padding: 0;
  }
  
  .related-articles ul li {
    margin: 10px 0;
  }
  
  .related-articles ul li a {
    text-decoration: none;
    font-size: 18px;
    color: #0000ff;
    transition: color 0.3s;
  }
  
  .related-articles ul li a:hover {
    color: #ff4500;
  }

  

  .feedback-section {
    text-align: center;
    padding: 20px;
    background-color: #f1f1f1;
    border-radius: 8px;
    width: 60%;
    margin: 20px auto;
  }
  
  .feedback-section p {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .feedback-section .emoji {
    font-size: 40px;
  }
  
  .feedback-section .emoji span {
    margin: 0 10px;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .feedback-section .emoji span:hover {
    transform: scale(1.3);
  }

  

  .footer {
    background-color: #2d3e50; /* Matches the dark background */
    padding: 20px;
    text-align: center;
  }
  
  .footer p {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
  }
  
  .footer .container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
  }
  