body {
  padding: 2rem;
}

table {
  width: auto;
  border-collapse: collapse;
  margin-top: 1rem;
  cursor: default;
}
.container {
  margin: 0;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
  max-width: 100%;
}

.bkgid {
  cursor: pointer;
}

tbody tr:hover {
  background-color: #eafffa !important;
  transition: background 0.2s ease;
}

.status-assign {
  background: #e0f7f9;
  border: 1px solid #1abc9c;
  color: #1abc9c;
  border-radius: 5px;
  padding: 0.25rem 0.5rem;
  font-weight: bold;
  white-space: nowrap;
}

.status-todo {
  background: #e7f1ff;
  border: 1px solid #3498db;
  color: #3498db;
  border-radius: 5px;
  padding: 0.25rem 0.5rem;
  font-weight: bold;
}

.dot-red {
  height: 12px;
  width: 12px;
  background-color: rgb(21, 147, 48);
  border-radius: 50%;
  display: inline-block;
}

/* Interested bubbles */
.bubbles {
  display: flex;
  align-items: center;
}

.bubble {
  background-color: #3498db;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -6px;
  font-size: 0.8rem;
  font-weight: bold;
  border: 2px solid #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.bubble:hover {
  transform: translateY(-3px);
}

.bubble2 {
  background-color: #afd5ee;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 0px;
  font-size: 0.8rem;
  font-weight: bold;
  border: 2px solid #fff;
  cursor: pointer;
}

.bubble:first-child {
  margin-left: 1rem;
}

.filters {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 6px 20px;
  z-index: 1000;
  margin-bottom: 1rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-bottom: 2px solid rgb(251, 247, 247);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: nowrap;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.filters input,
.filters select {
  max-width: 250px;
}

.assignee-counter {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
  margin-left: 8rem;
}

.assignee-stats {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 3px 10px;
  gap: 0px;
  font-size: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}
.assignee-stats:hover {
  transform: translateY(-3px);
}
.assignee-stats .stat.interested {
  color: #3b9ad8;
}

.assignee-stats .stat.assigned {
  color: #fa0100;
}
.assignee-bubble {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-top: 3px;
  background-color: #3498db;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.assignee-bubble:hover {
  transform: translateY(-3px);
}
.assignee-bubble .bubble-text {
  z-index: 1;
}

.assignee-bubble .task-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: red;
  color: white;
  border-radius: 50%;
  font-size: 0.7rem;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid white;
}

.recovery {
  font-weight: bold;
}

.create-task-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  display: inline-block !important;
  width: auto !important;
  background-color: #2ee4b9;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
}

.create-task-btn:hover {
  background-color: #57f4d0;
}
.stats-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100vw;
  gap: 20px;
  margin: 20px 0;
  padding: 0 20px;
  width: 100%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.stat-box {
  display: flex;
  cursor: pointer;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.stat-box:hover {
  transform: translateY(-3px);
}

.stat-box strong {
  font-size: 16px;
  display: block;
}

.stat-box p {
  margin: 0;
  font-size: 13px;
  color: #666;
}

/* Icons */
.icon {
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon.alert {
  background: #ffe5e5;
}
.icon.emergency {
  background: #e5f6ff;
}
.icon.recovery {
  background: #f2e5ff;
}
.icon.departures {
  background: #e5ffe9;
}
.icon.check {
  background: #e5f0ff;
}
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
  font-size: 14px;
  padding: 12px;
  background: #fff;
  margin-bottom: -1.5rem;
  width: fit-content;
}

.filter-icon {
  font-size: 12px;
  cursor: pointer;
  color: #444;
}
.notification {
  position: relative;
  display: flex;
  justify-content: center;
  font-size: 14px;
  color: #333;
  border-radius: 12px;
  transition: transform 0.2s ease;
}
.notification:hover {
  transform: translateY(-3px);
}

.notification .badge {
  position: absolute;
  top: -6px;
  right: 10px;
  background-color: red;
  color: white;
  border-radius: 50%;
  font-size: 0.4rem;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid white;
}
