      .styled-heading {
  border-bottom: solid #ffd230 2px;
  margin-top: 30px;
}

.styledheading-span {
  background-color: #ffd230;
  padding: 8px 20px;
  line-height: 200% !important;
  font-size: 17px !important;
  font-weight: 600;
  text-transform: capitalize;
}

  .styled-list {
    list-style-type: none; /* Remove default bullets */
    padding: 0;
    margin: 0;
    background-color: #ffffff;
    border-radius: 8px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Styling for each li */
.styled-list li {
    padding: 15px 20px;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Hover effect for each li */
.styled-list li:hover {
    background-color: #f0f0f0;
}

/* Last item has no bottom border */
.styled-list li:last-child {
    border-bottom: none;
}

/* Optional: Adding a little space between the list items */
.styled-list li:not(:last-child) {
    margin-bottom: 5px;
}






/* Verify Styles */

.msg {
    padding: 5px;
    border: 2px solid #993300;
    background: #EFEF00;
    color: #993300;
    font-weight: bold;
    text-align: center;
    margin: 5px;
    border-radius: 10px;
}







/* Update Posting Listing Styles */

   .gnupdatelist-card {
      display: flex;
      align-items: center;
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      margin-bottom: 10px;
      margin-top: 5px;
      padding: 15px;
    }
    .gnupdatelist-card:hover{
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }
    .gnupdatelist-card img {
      width: 120px;
      height: 120px;
      object-fit: cover;
      border-radius: 8px;
      margin-left: auto;
      border: 2px solid #520000;
    }
    .gnupdatelist-card-content {
      max-width: 70%;
    }
    .gnupdatelist-category {
      font-size: 12px;
      color: #ff0000;
      font-weight: bold;
      margin-bottom: 20px;
    }
    .gnupdatelist-title {
      font-size: 16px;
      font-weight: bold;
      color: #000;
      line-height: 1.4;
    }

    /* Update Post Listing Ends */









.news-container {
        max-width: 600px;
        margin: auto;
        padding: 10px;
        background: #fff;
    }
    .news-item {
        display: flex;
        flex-direction: row;
        align-items: center;
        padding: 14px 0;
        border-bottom: 1px solid #ccc;
    }
    .news-item img {
        width: 120px;
        height: 80px;
        object-fit: cover;
        border-radius: 8px;
        margin-right: 14px;
    }
    .news-content {
        flex: 1;
    }
    .badge {
        display: inline-block;
        border: 1px solid #000;
        border-radius: 14px;
        padding: 3px 10px;
        font-size: 12px;
        font-weight: bold;
        margin-bottom: 6px;
    }
    
    .news-title {
        font-size: 16px;
        font-weight: bold;
        margin: 0;
        line-height: 1.3;
        text-transform: Capitalize;
    }

    .news-title a{
      color: #ff0000;
      
    }

    /* Mobile-first: single column on small screens */
    @media (max-width: 480px) {
        .news-item {
            flex-direction: column;
            align-items: flex-start;
        }
        .news-item img {
            width: 100%;
            height: auto;
            margin: 0 0 10px;
        }
    }

