.card {
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 16px;
  background: white;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.card {
  background: white;
  border-radius: 16px;
  padding: 16px;
  margin-top: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 15px;
}

.category {
  text-align: center;
  padding: 14px;
  background: white;
  border-radius: 14px;
  font-size: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.fab {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #0A7CFF;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 26px;
  border: none;
}

.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: #0A7CFF;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  opacity: 0;
  transition: 0.3s;
  z-index: 999;
}

.toast.show {
  opacity: 1;
  bottom: 50px;
}