.add-edit-button {
    background-color: #007bff;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    padding: 5px 20px;
    border: none;
    border-radius: 7px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 10px;
    width: 200px;
  }
  
  .add-edit-button:hover {
    background-color: #0056b3; /* Darker blue on hover */
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Stronger shadow */
  }
  
  .add-edit-button:active {
    background-color: #004085; /* Even darker blue on click */
    transform: scale(0.98); /* Slightly shrink */
  }
  
  .add-edit-button:focus {
    outline: 2px solid #80bdff; /* Highlight outline for accessibility */
    outline-offset: 2px;
  }
  
  .wide-btn{
    width: 180px;
    height: 30px;
    font-size: 12px;
  }
  .red{
    background-color: red;
    color:white;
  }
  .red-font{
    background-color: rgb(255, 255, 255);
    color:rgb(255, 0, 0);
  }
  .red:hover{
    background-color: rgb(100, 30, 30);
    color:white;
  }
  .height-40
  {
    height: 40px !important;
  }