body {
  background-color: #f8f9fa;
  padding-bottom: 100px;
}

.table-container {
  background-color: white;
  border-radius: 8px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}

.table-title {
  color: #495057;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #dee2e6;
}

.table-fixed {
  table-layout: fixed;
  width: 100%;
}

.col-code {
  width: 8%;
}

.col-desc {
  width: 20%;
}

.col-blends {
  width: 8%;
}

.col-qty {
  width: 8%;
}

.col-allergens {
  width: 12%;
}

.col-cures {
  width: 8%;
}

.col-actions {
  width: 12%;
}

.col-comments {
  width: 16%;
}

.col-status {
  width: 8%;
}

.table th,
.table td {
  text-align: center;
  vertical-align: middle;
  padding: 8px 12px;
}

.table th {
  background-color: #343a40;
  color: white;
  font-weight: 500;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.02);
}

.table-hover tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.05);
}


.post-it-container {
  min-height: 300px;
  border: 2px dashed #dee2e6;
  padding: 15px;
  border-radius: 8px;
  background-color: #f8f9fa;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.post-it-container h4 {
  color: #495057;
  margin-bottom: 15px;
  text-align: center;
}

.post-it-note {
  background-color: #fffacd;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  position: relative;
  transition: all 0.3s ease;
}

.post-it-note:hover {
  transform: rotate(1deg);
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3);
}

.post-it-note .close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: none;
  border: none;
  font-size: 1rem;
  color: #6c757d;
  cursor: pointer;
  padding: 0 5px;
}

.post-it-note .close-btn:hover {
  color: #dc3545;
}

.notification-card {
  margin-bottom: 15px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.notification-card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f9fa;
}

.notification-card .close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #6c757d;
  cursor: pointer;
}

.notification-card .close-btn:hover {
  color: #dc3545;
}

.fixed-bottom {
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1030;
}

@media (max-width: 768px) {
  .table-container {
    padding: 10px;
  }

  .table th,
  .table td {
    padding: 6px 8px;
    font-size: 0.9rem;
  }

  .col-code,
  .col-blends,
  .col-qty,
  .col-cures,
  .col-status {
    width: 10%;
  }

  .col-desc {
    width: 18%;
  }

  .col-allergens {
    width: 14%;
  }

  .col-actions {
    width: 14%;
  }

  .col-comments {
    width: 14%;
  }
}

.col-status {
  cursor: pointer;
  transition: background-color 0.2s;
}

.col-status:hover:not([data-status="Completed"]) {
  background-color: rgba(0, 0, 0, 0.05);
}

[data-status="Pending"] {
  color: #6c757d;
  font-weight: 500;
}

[data-status="In Production"] {
  color: #0d6efd;
  font-weight: 600;
}

[data-status="Completed"] {
  color: #198754;
  font-weight: 600;
}