/* Toast container */
.toast-container {
    position: fixed;
    top: 0;
    right: 0;
    min-width: 300px;
    z-index: 9999;
  }
  
  /* Individual toast */
  .toast {
    background-color: #333; /* Change this color to your desired non-transparent color */
    color: #ec1010;
    padding: 10px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    opacity: 10;
    transform: translateY(100%);
    transition: opacity 0.3s, transform 0.3s;
  }

  .toast-body {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: bolder;
  }
  
  /* Toast header */
  .toast-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
  }
  
  /* Toast close button */
  .btn-close {
    background-color: #fff; /* Change this color to match the text color of your button */
    border: none;
    color: #333; /* Change this color to match the background color of your button */
    cursor: pointer;
  }
  
  /* Toast types */
  .toast-success {
    background-color: #28a745;
    color: #28a745;
  }
  
  .toast-error {
    background-color: #dc3545;
    color: #dc3545;
  }
  
  .toast-info {
    background-color: #17a2b8;
    color: #17a2b8;
  }
  
  .toast-warning {
    background-color: #ffc107;
    color: #17a2b8;
  }
  