body {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  color: #2d3748;
  background-color: #edf2f7;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #212529;
}

.navbar {
  background: linear-gradient(135deg, #acb3d2 0%, #b16d45 100%) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Navbar específico para board.php con color dinámico */
.navbar.board-navbar {
  background: linear-gradient(135deg, var(--board-color, #acb3d2) 0%, var(--board-color-dark, #b16d45) 100%) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Si no hay color definido, usar gradiente por defecto */
.navbar.board-navbar:not([style*="--board-color"]) {
  background: linear-gradient(135deg, #acb3d2 0%, #b16d45 100%) !important;
}

.navbar-brand,
.navbar-nav .nav-link,
.navbar-text {
  color: white !important;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: 700;
  transition: all 0.3s ease;
}

.navbar-brand:hover {
  transform: translateY(-1px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar-nav .nav-link:hover {
  color: #356097 !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.board-logo-header {
  height: 28px;
  width: auto;
  object-fit: contain;
}

.navbar-btn {
  padding: 0.375rem 0.5rem !important;
  min-width: auto !important;
  width: auto !important;
  flex-shrink: 0;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
}

.navbar-btn:hover {
  background-color: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
}

.navbar-btn i {
  font-size: 0.875rem;
}

.navbar-search {
  max-width: 100%;
}

.navbar-search .input-group-text {
  padding: 0.375rem 0.5rem;
  font-size: 0.875rem;
}

.navbar-search .form-control {
  padding: 0.375rem 0.5rem;
  font-size: 0.875rem;
}

.navbar-search .form-control::placeholder {
  font-size: 0.875rem;
  color: #adb5bd;
}

.navbar .dropdown-toggle::after {
  margin-left: 0.5rem;
}

.navbar .dropdown-menu {
  margin-top: 0.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 991px) {
  .navbar-search {
    margin: 0.5rem 0;
    max-width: 100%;
  }
  
  .navbar-nav.d-flex {
    flex-wrap: wrap;
    gap: 0.5rem !important;
  }
}

.board-logo-list {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.navbar-logo {
  height: 24px;
  width: auto;
  object-fit: contain;
}

/* Estilos para página de login */
.login-container {
  background: linear-gradient(135deg, #acb3d2 0%, #b16d45 100%);
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5vh;
}

.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.login-header {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  border: none;
}

.login-body {
  padding: 2rem 1.5rem;
}

.login-logo {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
}

.login-form .form-label {
  color: #2d3748;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.login-form .form-control {
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.login-form .form-control:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
  background: white;
}

.login-btn {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  border: none;
  border-radius: 12px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
  color: white;
}

.login-footer {
  text-align: center;
  padding: 1rem 1.5rem;
  background: #f8f9fa;
  border-top: 1px solid #e2e8f0;
}

.login-footer p {
  color: #718096;
  margin: 0;
  font-size: 0.9rem;
}

.btn-primary {
  background-color: #3498db;
  border-color: #3498db;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.3rem;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: #2980b9;
  border-color: #2980b9;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-success {
  background-color: #27ae60;
  border-color: #27ae60;
}

.btn-success:hover {
  background-color: #229954;
  border-color: #229954;
  transform: translateY(-1px);
}

.btn-info {
  background-color: #3498db;
  border-color: #3498db;
}

.btn-info:hover {
  background-color: #2980b9;
  border-color: #2980b9;
  transform: translateY(-1px);
}

.btn-warning {
  background-color: #f39c12;
  border-color: #f39c12;
  color: white;
}

.btn-warning:hover {
  background-color: #e67e22;
  border-color: #e67e22;
  transform: translateY(-1px);
  color: white;
}

.btn-danger {
  background-color: #e74c3c;
  border-color: #e74c3c;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.3rem;
}

.btn-danger:hover {
  background-color: #c0392b;
  border-color: #c0392b;
  transform: translateY(-1px);
}

.btn-outline-primary {
  color: #3498db;
  border-color: #3498db;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.3rem;
}

.btn-outline-primary:hover {
  background-color: #3498db;
  border-color: #3498db;
  color: white;
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
  font-size: 0.8rem;
  padding: 0.3rem 0.6rem;
  border-radius: 0.3rem;
}

.btn-outline-secondary:hover {
  background-color: #e0f0ff;
  color: white;
}

.form-control {
  font-size: 0.9rem;
  border-radius: 0.3rem;
  border-color: #ced4da;
  transition: all 0.2s ease;
}

.form-control:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.form-select {
  font-size: 0.9rem;
  border-radius: 0.3rem;
}

.card {
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.2s ease;
  background-color: white;
}

.card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.card-header {
  background-color: #f8f9fa;
  border-bottom: 1px solid #e9ecef;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #495057;
}

.card-header.bg-dark,
.card-header.bg-primary {
  color: white !important;
}

.card-header h5,
.card-header h6 {
  color: inherit;
  margin: 0;
}

.card-body {
  padding: 1rem;
}

.card-title {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.board-card {
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
  cursor: pointer;
  border-left: 4px solid #3498db;
  overflow: visible !important;
}

.board-card .card-body {
  overflow: visible !important;
}

.board-card .dropdown-menu {
  z-index: 1050;
}

.board-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.category-section {
  margin-bottom: 2rem;
}

.category-header {
  background-color: #f8f9fa;
  border-bottom: 2px solid #e9ecef;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.category-color-indicator {
  width: 5px;
  height: 28px;
  border-radius: 3px;
}

.category-card {
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.category-card .card-header {
  border-radius: 0.5rem 0.5rem 0 0;
  font-size: 0.9rem;
  font-weight: 600;
}

.category-card .card-body {
  font-size: 0.85rem;
}

.user-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #3498db;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9em;
}

.table {
  font-size: 0.85rem;
}

.table th {
  font-weight: 700;
  color: #495057;
  padding: 0.75rem 0.5rem;
  background-color: #f8f9fa;
}

.table td {
  padding: 0.75rem 0.5rem;
  vertical-align: middle;
}

.btn-group .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  height: 32px;
}

.btn-group .btn i {
  font-size: 0.9rem;
}

.btn-sm {
  padding: 0 0.5rem;
}

.board-container {
  overflow: hidden;
  padding: 0 1rem;
  height: calc(100vh - 80px);
  margin-top: 0.5rem;
}

.input-group-text {
  font-size: 0.85rem;
}

#searchCards {
  font-size: 0.85rem;
  border-left: 0;
  border-right: 0;
}

#searchCards:focus {
  border-color: #3498db;
  box-shadow: none;
  border-left: 0;
  border-right: 0;
}

#searchCards:focus~.input-group-text {
  border-color: #3498db;
}

.input-group-text.border-end-0 {
  border-right: 0;
}

.input-group-text.border-start-0 {
  border-left: 0;
}

.input-group .input-group-text {
  background-color: white;
  border-color: #dee2e6;
}

.input-group .form-control:focus {
  z-index: 3;
}

#searchCards::placeholder {
  color: #adb5bd;
  font-style: italic;
}

.list-count-badge {
  font-size: 0.65rem;
  padding: 0.2rem 0.4rem;
  border-radius: 0.3rem;
  font-weight: 500;
}

.card-item {
  transition: all 0.3s ease;
}

.card-item:not(:visible) {
  opacity: 0;
  transform: scale(0.95);
}

.card-item.highlight-search {
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.25);
  border-left-color: #3498db;
  border-left-width: 5px;
}

#searchCards.active-search {
  border-color: #3498db !important;
  font-weight: 500;
}

.no-results-message {
  font-size: 0.9rem;
  padding: 1rem;
  border-radius: 0.5rem;
}

.lists-container {
  display: flex;
  gap: 1rem;
  height: calc(100vh - 75px);
  padding: 1rem 0;
  overflow-x: auto;
  overflow-y: hidden;
}

.lists-container::-webkit-scrollbar {
  height: 12px;
}

.lists-container::-webkit-scrollbar-track {
  background: #f1f3f5;
  border-radius: 6px;
}

.lists-container::-webkit-scrollbar-thumb {
  background-color: #cbd5e0;
  border-radius: 6px;
  border: 2px solid #f1f3f5;
}

.lists-container::-webkit-scrollbar-thumb:hover {
  background-color: #a0aec0;
}

.cards-container {
  min-height: 100px;
  transition: background-color 0.2s ease;
  flex: 1;
}

.cards-container:empty {
  min-height: 120px;
}

.cards-container.drop-active {
  min-height: 120px;
}

.cards-container.drop-hover {
  background-color: rgba(52, 152, 219, 0.08);
  border-radius: 0.4rem;
  outline: 2px dashed #3498db;
  outline-offset: -4px;
}

.empty-list-message {
  animation: fadeIn 0.3s ease;
}

.empty-list-message .fas.fa-inbox {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.cards-container:empty.drop-hover::after {
  content: "Suelta la tarjeta aquí";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #3498db;
  font-size: 0.9rem;
  font-weight: 500;
  font-style: italic;
}

.card-drop-placeholder {
  background-color: rgba(52, 152, 219, 0.15);
  border: 2px dashed #3498db;
  border-radius: 0.4rem;
  margin-bottom: 0.75rem;
  visibility: visible !important;
  height: 80px !important;
}

.card-drop-placeholder::before {
  content: "↓ Soltar aquí ↓";
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #3498db;
  font-size: 0.85rem;
  font-weight: 600;
  font-style: italic;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.ui-sortable-helper {
  opacity: 0.9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: rotate(2deg);
  width: 260px !important;
  cursor: grabbing;
}


.card-item.ui-sortable-placeholder {
  opacity: 0.3;
}

.list-column.ui-sortable-placeholder {
  min-width: 300px;
  max-width: 300px;
  height: auto;
  min-height: 200px;
  border: 3px dashed #007bff !important;
  border-radius: 0.75rem;
  background-color: rgba(0, 123, 255, 0.05) !important;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2) !important;
  opacity: 1 !important;
  margin: 0;
  padding: 0;
  position: relative;
}

.list-column.ui-sortable-placeholder::before {
  content: "Soltar aquí";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #007bff;
  font-weight: 600;
  font-size: 0.9rem;
  pointer-events: none;
  z-index: 1;
}

.list-column.ui-sortable-helper {
  opacity: 0.9;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2) !important;
  transform: rotate(2deg);
  cursor: grabbing !important;
  z-index: 1000 !important;
}

.list-column {
  min-width: 300px;
  max-width: 300px;
  border-radius: 0.75rem;
  padding: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
  transition: all 0.2s ease;
}

.list-column.ui-sortable-dragging {
  opacity: 0.5;
}

.list-column.list-sortable-hover {
  border-left: 3px solid #007bff;
  transition: border-left 0.2s ease;
}

.list-column.ui-sortable-placeholder.list-sortable-over {
  border-color: #0056b3 !important;
  background-color: rgba(0, 123, 255, 0.1) !important;
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.3) !important;
  transform: scale(1.02);
  transition: all 0.2s ease;
}

.list-column .cards-container {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 1rem 1rem 1rem;
}

.list-column .cards-container::-webkit-scrollbar {
  width: 8px;
}

.list-column .cards-container::-webkit-scrollbar-track {
  background: transparent;
}

.list-column .cards-container::-webkit-scrollbar-thumb {
  background-color: #cbd5e0;
  border-radius: 4px;
}

.list-column .cards-container::-webkit-scrollbar-thumb:hover {
  background-color: #a0aec0;
}

.add-list-column {
  background-color: rgba(255, 255, 255, 0.5);
  border: 2px dashed #cbd5e0;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease-out;
  min-width: 280px;
  max-width: 280px;
}

.add-list-column:hover {
  background-color: white;
  border-color: #3498db;
  border-style: solid;
  box-shadow: 0 2px 6px rgba(52, 152, 219, 0.2);
}

.add-list-column button {
  font-size: 0.9rem;
  transition: all 0.2s ease;
  color: white;
  font-weight: 500;
}

.add-list-column:hover button {
  font-weight: 600;
}

.list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  padding: 0.5rem;
  border-bottom: none;
  flex-shrink: 0;
  border-radius: 0.6rem 0.6rem 0 0;
}

.list-header h5,
.list-header .list-title,
.list-header i,
.list-header .fa-pencil-alt,
.list-header .list-count-badge {
  color: white !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.list-header .btn-outline-light {
  color: white !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  padding: 0.3rem 0.5rem;
}

.list-header .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.25) !important;
  border-color: rgba(255, 255, 255, 0.6) !important;
  color: white !important;
}

.list-header .btn-outline-light i {
  font-size: 0.85rem;
}

.list-header .d-flex.gap-1 {
  gap: 0.3rem !important;
}

.list-header .dropdown-menu {
  font-size: 0.85rem;
}

.list-header .dropdown-item {
  padding: 0.4rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.list-header .dropdown-item i {
  color: #6c757d !important;
  text-shadow: none !important;
  width: 16px;
  text-align: center;
}

.list-header .dropdown-item.text-danger i {
  color: #e74c3c !important;
}

.list-header .fa-pencil-alt {
  transition: opacity 0.2s ease;
  cursor: pointer;
}

.list-header:hover .fa-pencil-alt {
  opacity: 0.8 !important;
}

.list-title {
  font-weight: 600;
  margin: 0;
  flex-grow: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.95rem;
  color: #2d3748;
  cursor: text;
  padding: 0.25rem 0.5rem;
  border-radius: 0.4rem;
  transition: all 0.2s ease;
}

.list-title:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.list-title:focus {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 0.4rem;
  padding: 0.25rem 0.5rem;
  box-shadow: 0 0 0 0.15rem rgba(255, 255, 255, 0.5);
  cursor: text;
  color: #2d3748 !important;
  text-shadow: none !important;
}

.card-item {
  background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 0.6rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid #e8eaed;
  font-size: 0.85rem;
  position: relative;
}

.card-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
  border-color: #cbd5e0;
  background: white;
}

.card-title {
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #2d3748;
  font-size: 0.9rem;
  line-height: 1.3;
}

.card-description {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #718096;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #718096;
  padding-top: 0.5rem;
  border-top: 1px solid #f7fafc;
}

.card-footer-creator {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: #a0aec0;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid #f0f0f0;
}

.card-footer-creator i {
  font-size: 0.75rem;
  color: #cbd5e0;
}

.card-footer-creator span {
  color: #718096;
  font-weight: 500;
}

.card-assignees {
  display: flex;
  gap: 4px;
}

.assignee-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #acb3d2 0%, #b16d45 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 600;
  border: 2px solid white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.card-description p {
  margin: 0 !important;
}

.assignee-avatar:nth-child(2) {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.assignee-avatar:nth-child(3) {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.assignee-avatar:nth-child(4) {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.card-indicators {
  font-size: 0.75rem;
  color: #718096;
}

.card-indicator {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.4rem;
  background-color: #f7fafc;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 500;
}

.card-indicator i {
  font-size: 0.7rem;
  color: #a0aec0;
}

.card-indicator span {
  color: #4a5568;
  font-weight: 600;
}

.add-member-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  opacity: 0.7;
  transition: all 0.2s ease;
  border: 1px solid rgb(120 115 115 / 30%) !important;
}

.add-member-btn .fas {
  color: black !important;
}

.add-member-btn:hover {
  opacity: 1;
    background-color: rgb(239 255 239) !important;
    border-color: rgb(0 0 0 / 50%) !important;
    transform: scale(1.11);
}

.add-member-btn-empty {
  width: auto !important;
  height: auto !important;
  min-width: 28px;
  min-height: 28px;
  opacity: 1 !important;
  border: 1px solid #007bff !important;
  background-color: rgba(0, 123, 255, 0.1) !important;
  color: #007bff !important;
  font-weight: 600;
}

.add-member-btn-empty:hover {
  background-color: rgba(0, 123, 255, 0.2) !important;
  border-color: #007bff !important;
  color: #0056b3 !important;
  transform: scale(1.05);
}


.member-selector-dropdown {
  border: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  margin-top: 0.25rem;
}

.member-option {
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border-radius: 0.25rem;
  margin: 0.125rem;
}

.member-option:hover {
  background-color: #f8f9fa;
}

.member-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #acb3d2 0%, #b16d45 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.member-search-input {
  border-radius: 0.375rem;
  font-size: 0.875rem;
}

.member-search-input:focus {
  border-color: #acb3d2;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

/* Campos deshabilitados con estilo normal */
.card-modal input:disabled,
.card-modal textarea:disabled,
.card-modal select:disabled {
  background-color: white !important;
  color: #2d3748 !important;
  opacity: 1 !important;
  cursor: default !important;
  border-color: #e8eaed !important;
}

.card-modal #cardTitle:disabled {
  background-color: transparent !important;
  color: #2d3748 !important;
  opacity: 1 !important;
}

.card-modal #cardDescription:disabled {
  background-color: #f8f9fa !important;
  color: #2d3748 !important;
  opacity: 1 !important;
}

.due-date {
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 0.3rem;
  background-color: #edf2f7;
  color: #4a5568;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.due-date.overdue {
  background-color: #fed7d7;
  color: #c53030;
}

.due-date.due-soon {
  background-color: #feebc8;
  color: #c05621;
}

.card-tags .tag-badge {
  font-size: 0.7rem;
  padding: 0.3rem 0.6rem;
  border-radius: 1rem;
  color: white;
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  margin-right: 0.25rem;
  margin-bottom: 0.25rem;
}

.card-tags .tag-badge .btn-close-white {
  font-size: 0.5em;
  margin-left: 0.2rem;
  opacity: 0.8;
}

.card-tags .tag-badge .btn-close-white:hover {
  opacity: 1;
}

.add-card-inline-form,
.add-list-inline-form {
  background-color: white;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #e8eaed;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  animation: slideDown 0.2s ease;
}

.list-column>.add-card-inline-form {
  flex-shrink: 0;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.add-card-inline-form .form-control,
.add-list-inline-form .form-control {
  font-size: 0.85rem;
  padding: 0.4rem 0.6rem;
  border-color: #e8eaed;
}

.empty-list-message .show-add-card-inline-form {
  border-color: #e8eaed !important;
  color: #6c757d !important;
  font-size: 0.85rem !important;
  padding: 0.5rem 1rem !important;
  transition: all 0.2s ease;
  border-radius: 0.4rem !important;
  background-color: white !important;
}

.empty-list-message .show-add-card-inline-form:hover {
  background-color: #3498db !important;
  border-color: #3498db !important;
  color: white !important;
  box-shadow: 0 2px 4px rgba(52, 152, 219, 0.3);
  transform: translateY(-1px);
}

.add-card-inline-form .btn-sm,
.add-list-inline-form .btn-sm {
  font-size: 0.75rem;
  padding: 0.4rem 0.5rem;
  font-weight: 500;
}

.add-card-inline-form .gap-2 {
  gap: 0.4rem !important;
}

.card-modal .modal-dialog {
  max-width: 800px;
}

.card-modal .modal-content {
  border-radius: 0.75rem;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.card-modal .modal-header {
  background-color: white;
  padding: 1.25rem 1.5rem 0.75rem;
  border-bottom: 1px solid #e9ecef;
}

.card-modal .modal-body {
  padding: 1rem 1.5rem 1.5rem;
  background-color: #fafbfc;
}

.card-detail-section {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.card-detail-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}


#cardTitle {
  font-size: 1.1rem !important;
  font-weight: 600;
}

#cardTitle:focus {
  outline: none;
  border-bottom: 2px solid #3498db !important;
}

.card-modal .form-select-sm,
.card-modal .form-control-sm {
  font-size: 0.8rem;
  padding: 0.4rem 0.6rem;
  border-radius: 0.4rem;
  border-color: #dee2e6;
}

.card-modal .form-select-sm:focus,
.card-modal .form-control-sm:focus {
  border-color: #3498db;
  box-shadow: 0 0 0 0.15rem rgba(52, 152, 219, 0.15);
}

.card-modal .input-group-sm .btn {
  padding: 0.4rem 0.6rem;
  font-size: 0.8rem;
}

.card-detail-section {
  background-color: white;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 0.6rem;
  border: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.card-detail-section:last-child {
  margin-bottom: 0;
}

.card-modal .btn-outline-primary {
  border-color: #3498db;
  color: #3498db;
}

.card-modal .btn-outline-primary:hover {
  background-color: #3498db;
  border-color: #3498db;
  color: white;
}

.card-modal .btn-outline-secondary {
  border-color: #dee2e6;
  color: #6c757d;
}

.card-modal .btn-outline-secondary:hover {
  background-color: #6c757d;
  border-color: #6c757d;
  color: white;
}

.checklist-group {
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.checklist-group h6 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: #495057;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.5rem;
  font-size: 0.8rem;
  border-radius: 0.3rem;
  transition: background-color 0.2s ease;
}

.checklist-item:hover {
  background-color: #f8f9fa;
}

.checklist-item .form-check-input {
  flex-shrink: 0;
  width: 1em;
  height: 1em;
  margin-top: 0;
  cursor: pointer;
}

.checklist-item span {
  flex-grow: 1;
  line-height: 1.4;
}

.checklist-item-content {
  flex-grow: 1;
  line-height: 1.4;
  word-break: break-word;
}

.checklist-item-content[contenteditable="true"]:hover {
  background-color: rgba(0, 123, 255, 0.05);
}

.checklist-item-content[contenteditable="true"]:focus {
  background-color: rgba(0, 123, 255, 0.1) !important;
  outline: 2px solid #007bff !important;
  outline-offset: 2px !important;
}

.checklist-item .text-decoration-line-through {
  color: #868e96;
}

.add-item-inline-form {
  background-color: #f8f9fa;
  padding: 0.5rem;
  border-radius: 0.4rem;
  margin-top: 0.5rem;
  border: 1px solid #e9ecef;
}

.add-item-inline-form .form-control {
  font-size: 0.75rem;
  padding: 0.35rem 0.5rem;
  border-radius: 0.3rem;
}

.add-item-inline-form .btn {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
}

.comment-item {
  background-color: white;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.comment-item:hover {
  border-color: #dee2e6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
}

.comment-author {
  font-weight: 600;
  color: #3498db;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.comment-author::before {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #3498db;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
}

.comment-date {
  color: #6c757d;
  font-size: 0.7rem;
}

.comment-content {
  line-height: 1.6;
  color: #495057;
}

.comment-attachments {
  margin-top: 0.5rem;
  border-top: 1px dashed #e9ecef;
  padding-top: 0.5rem;
}

.attachment-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  background-color: white;
  border: 1px solid #e9ecef;
  border-radius: 0.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  transition: all 0.2s ease;
}

.attachment-item:hover {
  border-color: #3498db;
  background-color: #f8f9fa;
}

.attachment-item.attachment-small {
  padding: 0.3rem 0.5rem;
  font-size: 0.75rem;
}

.attachment-item.attachment-small .attachment-icon {
  width: 22px;
  height: 22px;
  font-size: 0.6em;
}

/* Área de adjuntos mejorada */
#attachmentsContainer {
  border-radius: 6px;
  transition: all 0.2s ease;
}

#attachmentsContainer:empty {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 2px dashed #dee2e6;
}

/* Botón de subir archivos personalizado */
.custom-file-btn {
  transition: all 0.2s ease;
  border-radius: 6px !important;
  position: relative !important;
  overflow: hidden !important;
}

.custom-file-btn input[type="file"] {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  pointer-events: none !important;
}

.custom-file-btn:hover {
  background-color: #e3f2fd !important;
  border-color: #1976d2 !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(25, 118, 210, 0.15);
}

.custom-file-btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(25, 118, 210, 0.2);
}

/* Estilos específicos para botón de comentarios */
.custom-file-btn.btn-outline-secondary:hover {
  background-color: #f8f9fa !important;
  border-color: #6c757d !important;
  color: #495057 !important;
}

/* Preview de imágenes en comentarios */
.image-attachment {
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e9ecef;
  background: #fff;
}

.image-preview {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  max-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 6px;
}

.image-preview img {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
}

.image-preview:hover .image-overlay {
  opacity: 1;
}

.image-preview:hover img {
  transform: scale(1.05);
}

.image-overlay i {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.image-overlay span {
  font-size: 0.75rem;
  font-weight: 500;
}

.attachment-info {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.attachment-filename {
  font-size: 0.85rem;
}

.attachment-meta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.attachment-meta i {
  font-size: 0.7rem;
  opacity: 0.7;
}

.attachment-actions {
  display: flex;
  gap: 0.5rem;
}

/* Modal de imagen */
#imageModal .modal-content {
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

#imageModal .modal-body img {
  border-radius: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

#imageModal .btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

/* Editor de texto enriquecido para descripción */
#descriptionEditor {
  border: 1px solid #ced4da;
  border-radius: 6px;
  background: #fff;
}

#descriptionEditor .ql-toolbar {
  border-top: 1px solid #ced4da;
  border-left: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  background: #f8f9fa;
}

#descriptionEditor .ql-container {
  border-bottom: 1px solid #ced4da;
  border-left: 1px solid #ced4da;
  border-right: 1px solid #ced4da;
  border-top: none;
  border-radius: 0 0 6px 6px;
  font-size: 14px;
}

#descriptionEditor .ql-editor {
  min-height: 120px;
  padding: 12px 15px;
  line-height: 1.5;
}

#descriptionEditor .ql-editor.ql-blank::before {
  color: #6c757d;
  font-style: italic;
  font-size: 14px;
}

#descriptionEditor .ql-toolbar .ql-formats {
  margin-right: 15px;
}

#descriptionEditor .ql-toolbar button {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

#descriptionEditor .ql-toolbar button:hover {
  background-color: #e9ecef;
}

#descriptionEditor .ql-toolbar button.ql-active {
  background-color: #0d6efd;
  color: white;
}

/* Estilos para descripción de solo lectura */
.description-readonly {
  font-size: 14px;
  line-height: 1.6;
  color: #495057;
}

.description-readonly h1,
.description-readonly h2 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.description-readonly h1 {
  font-size: 1.5rem;
}

.description-readonly h2 {
  font-size: 1.25rem;
}

.description-readonly p {
  margin-bottom: 0.75rem;
}

.description-readonly ul,
.description-readonly ol {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
}

.description-readonly blockquote {
  border-left: 4px solid #dee2e6;
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: #6c757d;
}

.description-readonly code {
  background: #f8f9fa;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}

.description-readonly pre {
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 6px;
  overflow-x: auto;
  margin: 1rem 0;
}

.description-readonly a {
  color: #0d6efd;
  text-decoration: none;
}

.description-readonly a:hover {
  text-decoration: underline;
}

/* Modal de tarjeta más ancho y layout mejorado */
.card-modal .modal-xl {
  max-width: 1200px;
}

.card-modal .card-detail-section {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f3f4;
}

.card-modal .card-detail-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* Scroll personalizado para comentarios */
#commentsContainer {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e0 #f7fafc;
  border: 1px solid #e9ecef;
  border-radius: 6px;
  padding: 0.75rem;
  background: #f8f9fa;
}

#commentsContainer::-webkit-scrollbar {
  width: 6px;
}

#commentsContainer::-webkit-scrollbar-track {
  background: #f7fafc;
  border-radius: 3px;
}

#commentsContainer::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 3px;
}

#commentsContainer::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

/* Responsive para modal de 3 columnas */
@media (max-width: 991.98px) {
  .card-modal .col-lg-4 {
    margin-bottom: 1rem;
  }

  .card-modal .modal-xl {
    max-width: 95%;
  }
}

@media (max-width: 767.98px) {
  .card-modal .modal-xl {
    max-width: 98%;
    margin: 0.5rem;
  }

  .card-modal .col-lg-4 {
    margin-bottom: 1.5rem;
  }
}

.attachment-icon {
  width: 32px;
  height: 32px;
  background-color: #f0f4f8;
  color: #3498db;
  border-radius: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
  border: 1px solid #e9ecef;
}

.time-log-entry {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.6rem;
  background-color: white;
  border: 1px solid #e9ecef;
  border-radius: 0.4rem;
  margin-bottom: 0.4rem;
  font-size: 0.75rem;
  transition: all 0.2s ease;
}

.time-log-entry:hover {
  border-color: #dee2e6;
  background-color: #f8f9fa;
}

#assignedUsers .badge {
  font-size: 0.75rem;
  padding: 0.4rem 0.6rem;
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

#cardTags .badge {
  font-size: 0.7rem;
  padding: 0.35rem 0.5rem;
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.badge {
  padding: 0.4em 0.7em;
  border-radius: 0.3rem;
  font-weight: 500;
}

.section-card {
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-header {
  background-color: #2c3e50;
  color: white;
  padding: 15px 20px;
  border-radius: 0.5rem 0.5rem 0 0;
  margin-bottom: 0;
}

.section-body {
  padding: 20px;
  background: white;
}

.board-item {
  padding: 10px;
  border: 1px solid #e0e0e0;
  border-radius: 0.4rem;
  margin-bottom: 10px;
  background-color: #f8f9fa;
  transition: all 0.2s ease;
}

.board-item:hover {
  background-color: #e9ecef;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.permission-item {
  padding: 12px;
  border-left: 3px solid #3498db;
  margin-bottom: 10px;
  background-color: #f8f9fa;
  border-radius: 0 0.4rem 0.4rem 0;
  transition: all 0.2s ease;
}

.permission-item:hover {
  background-color: #e9ecef;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.badge-custom {
  padding: 8px 12px;
  font-size: 0.9rem;
}

.stats-card {
  background-color: #3498db;
  color: white;
  padding: 20px;
  border-radius: 0.5rem;
  text-align: center;
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.stats-card h3 {
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.modal-header {
  background-color: #c5d3e2;
  color: white;
  border-bottom: none;
}

.modal-content {
  border-radius: 0.5rem;
  overflow: hidden;
}

.alert-info {
  background-color: #d1ecf1;
  border-left: 4px solid #0c5460;
  border-radius: 0.4rem;
}

.alert-success {
  background-color: #d4edda;
  border-left: 4px solid #155724;
  border-radius: 0.4rem;
}

.alert-warning {
  background-color: #fff3cd;
  border-left: 4px solid #856404;
  border-radius: 0.4rem;
}

.alert-danger {
  background-color: #f8d7da;
  border-left: 4px solid #721c24;
  border-radius: 0.4rem;
}

@media (max-width: 768px) {
  .lists-container {
    flex-direction: column;
    gap: 1rem;
  }

  .list-column {
    min-width: 100%;
    max-width: 100%;
  }

  .board-container {
    padding: 0.75rem;
  }

  .category-header h4 {
    font-size: 1rem;
  }

  .card-modal .modal-dialog {
    margin: 0.5rem;
    max-width: calc(100% - 1rem);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-item {
  animation: fadeIn 0.3s ease-out;
  overflow-wrap: break-word;
}

.swal2-popup {
  font-family: "Inter", sans-serif;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.swal2-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #212529;
}

.swal2-html-container {
  font-size: 0.9rem;
  color: #495057;
}

.swal2-confirm,
.swal2-cancel {
  font-size: 0.9rem !important;
  padding: 0.6rem 1.2rem !important;
  border-radius: 0.3rem !important;
  font-weight: 500 !important;
}

.swal2-confirm {
  background-color: #3498db !important;
  border-color: #3498db !important;
}

.swal2-confirm:hover {
  background-color: #2980b9 !important;
  border-color: #2980b9 !important;
}

.swal2-cancel {
  background-color: #6c757d !important;
  border-color: #6c757d !important;
}

.swal2-cancel:hover {
  background-color: #5a6268 !important;
  border-color: #545b62 !important;
}

.swal2-container {
  z-index: 99999 !important;
}

.swal2-popup {
  z-index: 99999 !important;
}

.swal2-html-container input,
.swal2-html-container textarea,
.swal2-html-container select {
  pointer-events: auto !important;
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
}

#timeLogModal.show,
#newTagModal.show {
  z-index: 1070 !important;
}

.modal-backdrop.show:nth-of-type(2) {
  z-index: 1065 !important;
}

.select-color-btn {
  transition: all 0.2s ease;
  font-weight: 500;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border: none !important;
  min-height: 40px;
}

.select-color-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.select-color-btn.border-white {
  outline: 3px solid white;
  outline-offset: -3px;
}



.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}


.ql-toolbar.ql-snow .ql-formats {
  margin-right: 5px;
}

.modal-backdrop {
  z-index: 1049;
}

/* Marca de agua */
.watermark {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
  opacity: 0.1;
  pointer-events: none;
}

.watermark-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.7);
}

/* Zona de basurero para eliminar tarjetas */
#trashDropZone {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 1050;
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
  border: 1px dashed #dc3545;
  border-radius: 10px;
  backdrop-filter: blur(4px);
}

#trashDropZone i {
  font-size: 1rem;
}

#trashDropZone.active {
  display: flex;
}

#trashDropZone.hover {
  background: rgba(220, 53, 69, 0.18);
  box-shadow: 0 6px 18px rgba(220, 53, 69, 0.25);
}

button#addListBtn {
  color: #b16e47;
}