/* Mark List screen */

.list-screen {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #101c22;
  color: #ffffff;
}

.list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border-bottom: 1px solid #1f2933;
}

.list-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.list-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.list-logo-text {
  font-size: 20px;
  font-weight: 600;
}

/* Navigation icons */

.list-nav {
  display: flex;
  gap: 8px;
}

.list-nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  padding: 8px;
}

.list-nav-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.list-nav-btn-active {
  background: rgba(19, 164, 236, 0.15);
}

.list-nav-icon {
  width: 24px;
  height: 24px;
  filter: invert(1);
}

.list-main {
  flex: 1;
  padding: 12px 16px 24px;
  overflow-y: auto;
}

.list-section {
  margin-bottom: 20px;
}

/* Search */

.list-search {
  border-radius: 20px;
  background: #020617;
  padding: 10px 12px;
}

.list-search-input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
}

.list-search-input::placeholder {
  color: #6b7280;
}

/* Items */

.list-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.list-item {
  display: flex;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #020617;
  cursor: pointer;
  transition: background 0.2s;
}

.list-item:hover {
  background: #0a1015;
}

.list-item-content {
  flex: 1;
  min-width: 0;
}

.list-item-title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.list-item-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(19, 164, 236, 0.2);
  color: #13a4ec;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 4px;
}

.list-item-note {
  font-size: 13px;
  color: #9ca3af;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Floating action button */

.list-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: none;
  background: #13a4ec;
  color: #ffffff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 30px rgba(19, 164, 236, 0.4);
  cursor: pointer;
}

.list-fab:active {
  transform: scale(0.95);
}

/* Action buttons on list items */

.list-item {
  display: flex;
  gap: 8px;
  align-items: center;
}

.list-item-actions {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.list-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.list-action-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.list-action-icon {
  width: 18px;
  height: 18px;
  filter: invert(0.6);
}

/* Copied message */

.list-copied-message {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #10b981;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
}

.list-copied-message.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}