.alert .btn-close {
  position: absolute;
  top: 8px;
  right: 12px;
  padding: 0;
  margin: 0;
  background: none !important;
  border: none !important;
  opacity: 1 !important;
  font-size: 24px;
}

.alert .btn-close::before {
  content: "×";
  color: #444;
}

.alert .btn-close:hover::before {
  color: #000;
}

.alert .btn-close svg {
  display: none;
}
.task-card {
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  background: white;
  border: 1px solid #e0e0e0;
  transition: 0.2s;
}

.task-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.task-header {
  background: #faf6cc;
  padding: 12px;
}

.task-body {
  padding: 10px;
  flex: 1;
  overflow: hidden;
  /* Taşmayı engelle */
}

.task-footer {
  border-top: 1px solid #eee;
  padding: 12px 16px;
  font-size: 14px;
  color: #444;
}

.badge-user {
  background: #007bff;
}

.badge-status {
  background: #ff9f43;
}

.badge-complete {
  background: rgb(5, 150, 105);
}

.task-settings {
  color: #666;
  cursor: pointer;
}

.task-settings:hover {
  color: #000;
}

.description-limit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* kaç satır görünmesini istiyorsun */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fixed-card {
  height: 240px;
  /* Sabit yükseklik */
  display: flex;
  flex-direction: column;
}
