body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
/* Navigation Bar Styling Start */
.navbar {
    background-color: #2c3e50;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navbar .logo {
    font-size: 18px;
    font-weight: bold;
  }

  .menu-icon {
    cursor: pointer;
    font-size: 24px;
    display: block;
    color: white;
  }

  .side-menu {
    position: fixed;
    top: 0;
    right: -250px;
    height: 100%;
    width: 250px;
    background-color: #34495e;
    color: white;
    padding-top: 60px;
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .side-menu a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    border-bottom: 1px solid #2c3e50;
  }

  .side-menu a:hover {
    background-color: #2c3e50;
  }

  .side-menu.open {
    right: 0;
  }
  .recommended-tools{
    color: #c6c6c6;
    font-size: small;
    margin-left: 10px;
  }
  /* Navigation Bar Styling End */
/* Footer CSS Niche */
.footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
    margin-top: 30px; /* Add margin to separate footer from content */
}

.footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    display: inline-block;
}

.footer a:hover {
    text-decoration: underline;
}
.footer .credit {
    margin-top: 15px;
    font-size: 12px;
}
/* Footer CSS Uapar */
/* Class Post-container Start */
.post-container{
    width: 60%;
    margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .post-container {
    width: 90%;
  }
}
/* Class Post-container End */
/* Post Image Start */
.centered-img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
/* Post Image End */
/* Post GPS Butten Start */
.gps-button {
      display: inline-block;
      background-color: #007BFF;
      color: #fff;
      padding: 12px 24px;
      font-size: 18px;
      border: none;
      border-radius: 8px;
      text-decoration: none;
      transition: background-color 0.3s ease;
      margin-top: 30px;
    }

    .gps-button:hover {
      background-color: #0056b3;
    }
    /* Post GPS Butten End */
    /* Table Styles Start */
    table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 14px;
    }
    
    th, td {
    border: 1px solid #ecb268;
    padding: 8px;
    text-align: left;
    }
    
    th {
    background-color: #fff3ce;
    color: #065f46;
    font-weight: 600;
    }
    
    tr:nth-child(even) {
    background-color: #f9fafb;
    }
    /* Table Styles End */