* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {
  background-color: #f5f5f5;
}

.board-container {
  position: absolute;
  display: flex;
  gap: 20px;
  padding: 20px;
  overflow-x: auto;
  height: calc(100vh);
}

.column {
  min-width: 280px;
  width: 280px;
  background-color: #f0f0f0;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  max-height: 100%;
}

.column-header {
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 5px;
}

.column-header-parent {
  padding: 12px 16px;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.status-indicator {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 3px;
  flex-shrink: 0;
}

.column-count {
  margin-left: 3px;
  color: #666;
  font-size: 14px;
}

.column-title {
  font-size: 14px;
  color: #444;
}

.column-subtitle {
  font-size: 12px;
  color: #666;
  margin: 5px;
}

.cards-container {
  padding: 8px;
  overflow-y: auto;
  flex: 1;
}

.card {
  background-color: white;
  border-radius: 4px;
  padding: 12px 16px;
  margin-bottom: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-header-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.card-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 3px;
}

.card-label {
  font-size: 12px;
  color: #666;
}

.card-title {
  font-size: 14px;
  color: #333;
}

.ri-edit-line {
  color: #9e9e9e;
  cursor: pointer;
}

.ri-edit-line:hover {
  color: #000000;
}

.ri-delete-bin-line {
  color: #9e9e9e;
  cursor: pointer;
}

.ri-delete-bin-line:hover {
  color: #000000;
}

.add-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  color: #666;
  cursor: pointer;
  border-top: 1px solid #ddd;
}

.add-icon {
  margin-right: 8px;
}

/* New Board Popup */

.modal-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal {
  background-color: white;
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.modal-title {
  font-size: 18px;
  font-weight: bold;
}

.close-button {
  cursor: pointer;
  font-size: 28px;
  color: #000000;
}

.modal-body {
  padding: 20px;
}

.form-group {
  margin-bottom: 15px;
}

.form-board {
  margin-bottom: 15px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
}

.form-input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.color-options {
  display: flex;
  gap: 8px;
}

.color-option {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
}

.color-option.selected {
  border-color: #888;
}

.color-gray {
  background-color: #8b8b8b;
}

.color-blue {
  background-color: #234fbc;
}

.color-green {
  background-color: #8bc34a;
}

.color-yellow {
  background-color: #ffc107;
}

.color-orange {
  background-color: #ff9800;
}

.color-pink {
  background-color: #f48fb1;
}

.color-purple {
  background-color: #ce93d8;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  padding: 15px 20px;
  border-top: 1px solid #eee;
  gap: 10px;
}

.btn {
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  border: none;
}

.btn-cancel {
  background-color: #f5f5f5;
  color: #333;
}

.btn-remove {
  background-color: #d90d0d;
  color: #fcfcfc;
}

.btn-submit {
  background-color: #4caf50;
  color: white;
}

.btn-submit-only {
  margin-top: 10px;
  width: 100%;
}

.hidden {
  display: none;
}

.addNewBoard {
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  padding-bottom: 5px;
  font-size: 30px;
  color: #f6f6f6;
  background-color: #1f1f1f;
  border-radius: 5px;
  cursor: pointer;
}
