.btn-create-task {
  min-width: 196px;
  height: 48px;
  border-radius: 16px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.22);
}

.btn-create-private {
  min-width: 220px;
  height: 48px;
  border-radius: 16px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 700;
  border-color: #c4b5fd;
  background: linear-gradient(180deg, rgba(245, 243, 255, 0.96), rgba(255, 255, 255, 0.98));
  color: #5b21b6;
  box-shadow: 0 12px 26px rgba(91, 33, 182, 0.12);
}
.btn-create-recurring {
  min-width: 228px;
  height: 48px;
  border-radius: 16px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 700;
  border-color: #c7d2fe;
  background: linear-gradient(180deg, rgba(238, 242, 255, 0.98), rgba(255, 255, 255, 0.98));
  color: #4338ca;
  box-shadow: 0 12px 26px rgba(67, 56, 202, 0.12);
}

.tasks-actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tasks-actions-row--hub {
  display: grid;
  grid-template-columns: 1fr;
}

.tasks-subsection {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tasks-subsection-head {
  margin-bottom: 0;
}

.tasks-subsection-head h3 {
  margin: 0;
  font-size: 20px;
}

.tasks-subsection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.created-toolbar {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  margin-bottom: 14px;
}

.tasks-subsection-head--created {
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: nowrap;
}

.created-screen-title {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
}

.created-back-button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 10px;
}

.created-search {
  position: relative;
  display: flex;
  align-items: center;
}

.created-search input,
.created-assignee-filter select,
.created-select-field select {
  width: 100%;
}

.created-search input {
  height: 42px;
  padding-left: 38px;
  border-radius: 12px;
  border: 1px solid rgba(203, 213, 225, 0.92);
  background: #fbfcff;
  box-shadow: none;
}

.created-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 15px;
  color: #94a3b8;
  pointer-events: none;
}

.created-assignee-filter select {
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(203, 213, 225, 0.92);
  background: #fbfcff;
}

.created-filters-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 10px;
}

.created-select-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.created-select-field span {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.created-select-field select {
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(203, 213, 225, 0.92);
  background: #fbfcff;
}

.created-filter-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
  max-height: 76px;
  overflow: hidden;
}

.created-filter-strip .filter-btn {
  flex: 0 0 auto;
  border: 1px solid rgba(203, 213, 225, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #475569;
  padding: 7px 12px;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: none;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.created-filter-strip .filter-btn.active {
  background: #eef2ff;
  color: #2563eb;
  border-color: #c7d2fe;
}

.created-task-layout,
.created-task-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.created-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.created-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 2px;
}

.created-group-head h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
}

.created-group-head span {
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  background: #f8fafc;
}

.created-task-card {
  border-width: 1px;
  border-style: solid;
  border-radius: 16px;
  padding: 14px;
  transition: box-shadow 0.16s ease, transform 0.16s ease, border-color 0.16s ease;
}

.created-task-card--assigned {
  border-color: rgba(191, 219, 254, 0.85);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.created-task-card--work {
  border-color: rgba(191, 219, 254, 0.85);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.created-task-card--review {
  border-color: rgba(253, 230, 138, 0.9);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.created-task-card--overdue {
  border-color: rgba(254, 202, 202, 0.95);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.created-task-card--done {
  border-color: rgba(187, 247, 208, 0.95);
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
}

.created-task-card:hover {
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.created-task-card--assigned:hover {
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
}

.created-task-card--work:hover {
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
}

.created-task-card--review:hover {
  box-shadow: 0 12px 28px rgba(180, 83, 9, 0.08);
}

.created-task-card--overdue:hover {
  box-shadow: 0 12px 28px rgba(220, 38, 38, 0.08);
}

.created-task-card--done:hover {
  box-shadow: 0 12px 28px rgba(22, 163, 74, 0.08);
}

.created-task-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.created-task-main {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 auto;
}

.task-card-title--compact {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 700;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.created-task-side {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  flex: 0 0 auto;
}

.created-task-meta-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 6px;
  color: #64748b;
  font-size: 12px;
  line-height: 1.3;
  min-width: 0;
  flex-wrap: nowrap;
  overflow: hidden;
}

.created-task-meta-line span {
  color: #cbd5e1;
}

.created-task-description {
  margin-top: 6px;
  color: #475569;
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.created-task-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.created-task-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  border: 1px solid rgba(203, 213, 225, 0.92);
  background: rgba(248, 250, 252, 0.92);
  color: #475569;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.15s ease, color 0.15s ease;
}

.created-task-icon-btn:hover {
  background: #f1f5f9;
}

.created-task-icon-btn:active {
  transform: scale(0.97);
}

.created-task-icon-btn--danger {
  color: #b91c1c;
}

@media (max-width: 720px) {
  .created-filters-grid {
    grid-template-columns: 1fr;
  }

  .btn-create-task,
  .btn-create-private,
  .btn-create-recurring {
    width: 100%;
  }
}
