@import "bulma.min.css";

html {
  background-color: #f9fafb;
}

body {
  min-height: 100%;
}
.card.is-clickable:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: scale(1.005);

  transition: all 0.1s ease;
  cursor: pointer;
  background-color: var(--bulma-primary-95);
}

.subtitle > p {
  font-size: 1.2rem;
  text-align: justify;
}

.table.is-hoverable tbody tr:not(.is-selected):hover,
.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover,
.table.is-hoverable.is-striped tbody tr:not(.is-selected):hover:nth-child(2n) {
  background-color: var(--bulma-primary-95);
}

/* Toast-Styling */
.toast {
  position: fixed;
  top: 4rem;
  right: 2rem;
  z-index: 1000;
  padding: 1rem 1.5rem;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background: #f5f5f5;
  color: #363636;
  transition: opacity 0.3s ease;
}

.toast.is-success {
  background-color: #48c774;
  color: white;
}

.toast.is-danger {
  background-color: #f14668;
  color: white;
}

.toast .delete {
  background: transparent;
  border: none;
  color: white;
  float: right;
  font-size: 1.2rem;
  margin-left: 1rem;
  cursor: pointer;
}
