/* Styles for the alert box */
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    padding: 8px; /* Reduced padding for a more compact appearance */
    display: flex; /* Use flexbox to align items */
    align-items: center; /* Center items vertically */
    margin-top: 0; /* Remove top margin */
  }
  .alert-success {
    background-color: #afd7a1;
    color: #214d09;
    padding: 8px;
    display: flex;
    align-items: center;
    margin-top: 0;
  }
  /* Styles for the cut button */
#cutButton-danger {
    padding: 6px 12px; /* Adjusted button padding */
    background-color: #dc3545;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s; /* Adding transition for smoother hover effect */
    margin-left: auto; /* Push the button to the right */
  }
  
  #cutButton-success {
    padding: 6px 12px; /* Adjusted button padding */
    background-color: #214d24;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s; /* Adding transition for smoother hover effect */
    margin-left: auto; /* Push the button to the right */
  }
  /* Hover styles for the button */
  #cutButton-danger:hover {
    background-color: #c82333;
  }
  
  #cutButton-succes:hover {
    background-color: #112612;
  }
  
