.main-layout-container {
  display: flex;
  min-height: 100vh;
}

.board-container {
  padding-top: 96px;
  width: calc(100% - 232px);
  max-width: calc(1440px - 232px);
}

.board-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 79px 88px 48px 64px;
}

.find-add-container {
  display: flex;
  gap: 32px;
  margin: 12px 0;
}

.search-bar {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 8px 16px;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
}

.search-bar input {
  font-family: "Inter", sans-serif;
  border: none;
  font-size: 20px;
  padding-block: 0;
  padding-inline: 0;
  flex-grow: 1;
}

input:focus {
  outline: none;
  box-shadow: none;
  border-color: inherit;
}

.find-separator {
  background-color: #d1d1d1;
  width: 1px;
  height: 100%;
  margin: 0 16px;
}

#addTaskBtn {
  display: flex;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-style: bold;
  font-size: 21px;
  color: white;
  white-space: nowrap;
  background-color: #2a3647;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  padding: 8px 16px;
  gap: 4px;
  &:hover {
    background-color: #28abe2;
  }
}

#addTaskBtn img {
  width: 18px;
  height: 18px;
}

.board-columns {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 0px 64px;
}

.board-columns h2 {
  font-size: 20px;
  color: #42526e;
}

.column {
  width: 252px;
  display: flex;
  flex-direction: column;
}

.column-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  white-space: nowrap;
  margin-bottom: 15px;
}

.column-header img {
  cursor: pointer;
  transition: all 0.125s ease;
}

.column-header img:hover {
  filter: brightness(0) saturate(100%) invert(56%) sepia(98%) saturate(456%)
    hue-rotate(161deg) brightness(96%) contrast(89%);
}

.column-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.task-card {
  position: relative;
  background-color: white;
  border-radius: 24px;
  box-shadow: 0px 0px 10px 3px #00000014;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 1;
  overflow-wrap: anywhere;
  max-width: 252px;
}

.task-move-btn {
  display: none;
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background-color: #f4f4f4;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background-color 0.125s ease;
  z-index: 1;
}

.task-move-btn:hover {
  background-color: #e0e0e0;
}

.task-move-btn:active {
  background-color: #d0d0d0;
}

.task-move-btn img {
  width: 20px;
  height: 20px;
}

.move-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.move-menu-overlay.open {
  display: block;
}

.move-menu {
  position: absolute;
  background-color: white;
  border-radius: 20px;
  padding: 16px;
  min-width: 180px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1001;
}

.move-menu-title {
  font-size: 16px;
  font-weight: 700;
  color: #2a3647;
  padding: 8px 12px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 4px;
}

.move-menu-option {
  background: none;
  border: none;
  padding: 12px 16px;
  font-size: 16px;
  color: #2a3647;
  text-align: left;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.125s ease;
}

.move-menu-option:hover {
  background-color: #f4f4f4;
}

.move-menu-option:active {
  background-color: #e0e0e0;
}

.move-menu-option.current-status {
  color: #a8a8a8;
  pointer-events: none;
  background-color: #f9f9f9;
}

.task-category {
  display: inline-block;
  padding: 4px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  color: white;
  width: fit-content;
}

.task-category.user-story {
  background-color: #0038ff;
}

.task-category.technical {
  background-color: #1fd7c1;
}

.task-title {
  font-size: 16px;
  font-weight: 700;
  color: #2a3647;
  margin: 0;
}

.task-description {
  font-size: 16px;
  font-weight: 400;
  color: #a8a8a8;
  margin: 0;
  line-height: 1.2;
}

.task-progress {
  display: flex;
  align-items: center;
  gap: 16px;
}

.progress-bar-container {
  width: 128px;
  height: 8px;
  background-color: #f4f4f4;
  border-radius: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: #4589ff;
  border-radius: 4px;
  transition: width 0.125s ease;
}

.subtasks-text {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #000000;
  white-space: nowrap;
}

.column img {
  width: 24px;
  height: 24px;
}

.task-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 8px;
}

.task-assignees {
  display: flex;
}

.task-priority-icon {
  width: 21px;
  height: 21px;
}

.badge {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #29abe2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: white;
  border: 2px solid white;
  margin-left: -8px;
}

.badge:first-child {
  margin-left: 0;
}

.badge-overflow {
  background: #a8a8a8;
}

.drop-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px;
  border: 1px dashed #a8a8a8;
  border-radius: 10px;
  background-color: #e7e7e7;
  color: #a8a8a8;
  font-size: 16px;
  text-align: center;
}

.column-content.drag-over .drop-placeholder {
  display: none;
}

.no-search-results {
  position: fixed;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #2a3647;
  color: white;
  padding: 16px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: bottom 0.125s ease-in-out;
  z-index: 1000;
}

.no-search-results.show {
  bottom: calc(50vh);
}

.no-search-results span {
  margin: 0;
}

.task-card {
  cursor: grab;
}

.task-card:active {
  cursor: grabbing;
}

.task-card.dragging {
  opacity: 0.3;
}

.drag-preview {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  transform: rotate(-5deg);
  opacity: 0.95;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.column-content.drag-over {
  background-color: #f6f7f8;
  border-radius: 10px;
}

.drag-drop-indicator {
  min-height: 200px;
  border: 1px dashed #a8a8a8;
  border-radius: 30px;
  pointer-events: none;
  transition: all 0.125s ease;
  opacity: 0.5;
}

.drag-drop-indicator-active {
  opacity: 1;
  border-color: #2a3647;
  background-color: rgba(42, 54, 71, 0.08);
}

.drag-start-pop {
  animation: dragPop 0.15s ease-out;
}

@keyframes dragPop {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.responsive-input {
  display: none;
}
