#btnDiv{
    display: flex;
    justify-content: center;
  }


#btnDiv {
    margin-bottom: 20px;
    text-align: center;
}
#addCourseDiv{
    margin-top: 30px;
    margin-bottom: 20px;
    text-align: center;
}


#btnDiv button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 4px;
    margin-right: 10px;
    background-color: #007bff;
    color: #ffffff; 
    transition: background-color 0.3s ease;
}

#btnDiv button:hover {
    background-color: #0056b3; 
}


@media (max-width: 576px) {
    #btnDiv button {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

  #searching {
    margin-top: 30px;
    margin: auto;
    display: flex;
    justify-content: center !important;
    align-items: center;
    width: 300px;
  }
  
  #searchValue {
    flex: 1; 
    padding: 8px;
    font-size: 14px;
  }
  
  .btn-outline-success {
    padding: 8px 16px;
    font-size: 14px;
    border: 1px solid #28a745; 
    color: #28a745; /* Text color */
    background-color: transparent;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .btn-outline-success:hover {
    background-color: #28a745;
    color: #fff;
  }
  

  #courseContainer {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px; 
    margin-top: 20px;
  }
  
  #courseContainer > div {
    border: 1px solid #ccc;
    padding: 20px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  #courseContainer > div h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  #courseContainer > div img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 10px;
  }
  
  #courseContainer > div h3.price {
    font-size: 1rem;
    font-weight: bold;
    color: #007bff; 
  }
  
  #courseContainer > div h4 {
    font-size: 1rem;
    color: #555;
    margin-top: 5px;
  }
  

  #addCourseForm {
    margin-top: 20px;
  }
  
  #addCourseForm button {
    padding: 8px 16px;
    font-size: 14px;
    border: none;
    background-color: #007bff; 
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
  }
  
  #addCourseForm button:hover {
    background-color: #0056b3; 
  }
  