
.sidebar{
    display: none !important; /* Hide the sidebar */
}
#break{
    display: none !important; /* Hide the break line */
}
.content{
  padding-bottom: 0px;
    padding-left: 0px !important; /* Remove left padding */
    padding-right: 0px !important; /* Remove right padding */
    margin-left: 0px !important; /* Adjust content to fill the space */
}
  .lms-banner {
    background: #d6fae7;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
   
    margin-bottom: 2rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  }
  .lms-banner-img {
    width: 100%;
    max-width: 100vw;
    object-fit: cover;
    /* height: 60rem; */
    /* Ensures image is cropped to 10rem height without stretching */
  }
  .lms-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  .lms-btn {
    background: #ff9800;
    color: #fff;
    border-radius: 2rem;
    padding: 0.75rem 2.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    border: none;
    transition: background 0.2s;
  }
  .lms-btn:hover {
    background: #388e3c;
    color: #fff;
  }
  @media (max-width: 991.98px) {
    .lms-banner {
      min-height: 180px;
   
    }
    .lms-section {
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
  }

  @media (max-width: 600px) {
    .lms-banner {
      min-height: 100px !important; 
   
    }
    .lms-banner-img {
          margin-top: 20% !important;
          /* margin-top: 15% !important; */
    }
    
   
  }