body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 400px;
    margin: 16% auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  h1 {
    text-align: center;
    color: #333;
    margin-top: 0;
  }

  h2 {
    color: #333;
    margin: 0;
    font-size: 26px !important
  }

  .head-content{
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  
  .info {
    margin-bottom: 50px;
  }
  
  .info p {
    font-size: 14px;
    margin: 10px 0;
  }
  
  .info strong {
    font-weight: bold;
  }
  
  .info span {
    color: #555;
  }
  
  .button-group {
    text-align: center;
  }
  
  button {
    margin: 5px;
    padding: 8px 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #0056b3;
  }
  
  .modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }
  
  .modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 420px;
    position: relative;
  }
  
  .close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
  }
  
  .modal-buttons {
    text-align: center;
    margin-top: 20px;
  }
  
  .modal-buttons button {
    background-color: #28a745; /* Green for Save button */
  }
  
  .modal-buttons #cancelBtn {
    background-color: #dc3545; /* Red for Cancel button */
  }
  
  .modal-buttons button:hover {
    opacity: 0.8;
  }
  
  .form-custom-input{
    font-size: 14px;
    border-radius: 6px;
    line-height: 1.5;
    padding: 5px 10px;
    transition: box-shadow 100ms ease-in, border 100ms ease-in, background-color 100ms ease-in;
    border: 2px solid #dee1e2;
    color: rgb(14, 14, 16);
    background: #dee1e2;
    display: block;
    height: 20px;
    width: 95%;
  }
    .form-custom-input:hover {
        border-color: #ccc;
    }
    .form-custom-input:focus{
        border-color: #9147ff;
        background: #fff;
    }

    .custome-label{
        font-size: 14px;
    }

    .fetch-btn{
        background: white;
        color: #007bff;
        border: 2px solid #007bff;
        font-weight: 600;
    }



/* style.css */
.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #333;
    color: #fff;
    padding: 15px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1000;
}

.toast.show {
    opacity: 1;
}

.toast.error {
    background-color: #f44336; /* Red */
}

.toast.success {
    background-color: #4caf50; /* Green */
}
