.large-button {
    width: 200px;
    height: 50px;
    background-color: rgb(170, 218, 202);
}

table td{
    border:1px solid;
}


button:disabled {
  background-color: #cccccc; /* Example: a light grey background */
  color: #666666; /* Example: a darker grey text color */
  cursor: not-allowed; /* Change cursor to indicate non-interactiveness */
  pointer-events: none; /* Crucial: Prevents hover events and clicks */
}

