body{
    background-color: #fefefe;
}
.none-link, a{
    text-decoration: none;
}
.search-container {
    margin-bottom: 15px;
}
.search-bar, .date-picker {
    flex-grow: 1;
    background-color: white;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.search-bar input, .date-picker input {
    border: none;
    flex-grow: 1;
    outline: none;
    font-size: 16px;
}
.toggle-buttons {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.toggle-buttons button {
    flex-grow: 1;
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.toggle-buttons .active {
    background-color: #007bff;
    color: white;
}
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}
.filter-option {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 5px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-option.active {
    background-color: #007bff;
    color: white;
}
.content-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.content-card:hover {
    transform: translateY(-5px);
}
.content-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 15px;
}
.content-info {
    padding: 15px;
    position: relative;
}
.content-title {
    font-weight: bold;
    margin-bottom: 5px;
}
.content-date {
    color: #6c757d;
    font-size: 0.9em;
    margin-bottom: 10px;
}
.tags {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    padding: 2px 5px;
    font-size: 0.75em;
}

.progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #f0f2f5;
    z-index: 1000;
}
.progress-bar {
    height: 100%;
    background-color: #007bff;
    width: 0;
}
.blog-link{
    text-decoration: none;
}



/* Code for Hospital Directory */
.search-bar {
    background-color: white;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.search-bar input {
    border: none;
    flex-grow: 1;
    outline: none;
    font-size: 16px;
}
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}
.filter-option {
    background-color: white;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    padding: 5px 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-option.active {
    background-color: #007bff;
    color: white;
}
.hospital-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.hospital-card:hover {
    transform: translateY(-5px);
}
.hospital-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.hospital-info {
    padding: 15px;
}
.hospital-name {
    font-weight: bold;
    margin-bottom: 5px;
}
.hospital-location {
    color: #6c757d;
    font-size: 0.9em;
    margin-bottom: 10px;
}
.view-profile {
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
}
.view-profile:hover {
    background-color: #0056b3;
}
.hospital-name > img{
    width: 14px;
    height: 14px;
    margin-left: 5px;
}
.rating {
    color: #ffc107;
    margin-bottom: 10px;
}
body {
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  .ban-filter{
    padding: 20px;
      border-radius: 30px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .container {
    max-width: 1200px;
  }
  
  h1, h2 {
    color: #333;
  }
  
  .card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card-img-top {
    height: auto;
    width: 100%;
    object-fit: cover;
  }
  
  .btn {
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
  }
  
  .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  
  .btn-outline-primary {
    color: #007bff;
    border-color: #007bff;
  }
  
  .btn-outline-primary:hover, .btn-outline-primary.active {
    background-color: #007bff;
    color: #fff;
  }
  
  .input-group .form-control {
    border-radius: 25px 0 0 25px;
  }
  
  .input-group .btn {
    border-radius: 0 25px 25px 0;
  }
  
  .category-buttons, .type-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  @media (max-width: 576px) {
    .card-img-top {
        height: 150px;
    }
  }