.dashboardList-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  width: 100%;
  background: var(--black);
  border-radius: 10px;
  border: 2px solid var(--white-faint);
}

.dashboardList-wrapper-standalone {
  background: var(--black-muted);
  border: 1px solid var(--white-faint);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: visible;
}

.dashboardList-wrapper-standaloneShadow {
  box-shadow: 4px 4px 0 var(--black-lighter);
}

.dashboardList-wrapper-standalone::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  opacity: 0.5;
}

.dashboardList-wrapper-standalone .dashboardList-header {
  background: var(--black-light);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.dashboardList-itemsContainer-standalone {
  background: var(--black-muted);
}

.dashboardList-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
  border-bottom: 2px solid var(--white-faint);
  padding: 15px 20px 15px 20px;
}

.dashboardList-titleContainer {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.dashboardList-titleContainer h2 {
  font-family: var(--font-family);
  font-size: var(--font-lg);
  font-weight: var(--font-weight-bold);
  color: var(--white);
  margin: 0;
}

.dashboardList-controls {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.dashboardList-searchWrapper {
  min-width: 200px;
}

.dashboardList-title {
  font-family: var(--font-family);
  font-size: var(--font-lg);
  font-weight: var(--font-weight-bold);
  color: var(--white);
  margin: 0;
}

.dashboardList-count, .dashboardList-itemCount {
  font-family: var(--font-family);
  font-size: var(--font-xs);
  color: var(--white-dim);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.dashboardList-addButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.6rem 1.2rem 0.6rem 0.9rem;
  font-size: var(--font-sm);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family);
  letter-spacing: var(--letter-spacing-wide);
  background: var(--black-lighter);
  color: var(--white);
  border: var(--border-normal) solid var(--pink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md) var(--pink-darker);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
}

.dashboardList-addButton:not(:disabled):hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-xl) var(--pink-darker);
}

.dashboardList-addButton:not(:disabled):active {
  transform: translate(0, 0);
  box-shadow: var(--shadow-sm) var(--pink-darker);
}

.dashboardList-addButton:disabled {
  background: var(--black-lighter);
  color: var(--white-dim);
  border: 2px solid var(--white-faint);
  box-shadow: 2px 2px 0 var(--black-lightest);
  cursor: not-allowed;
  opacity: 1;
}

.dashboardList-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  margin-left: -2px;
}

.dashboardList-container, .dashboardList-itemsContainer {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  min-height: 60px;
  padding: 0px 15px 15px 15px;
  border-radius: 15px;
}

.dashboardList-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md);
  background: var(--white-a03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid var(--white-faint);
  border-radius: var(--radius-md);
  box-shadow: 2px 2px 0 var(--white-ghost), inset 0 1px 0 var(--white-a10);
  transition: all var(--transition-fast);
  gap: var(--space-md);
  background: var(--black-muted);
}

.dashboardList-item:hover {
  cursor: pointer;
}

.dashboardList-item.selected {
  border-color: var(--pink);
  background: var(--pink-faint);
  box-shadow: 3px 3px 0 var(--pink-dim);
}

.dashboardList-itemContent {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  min-width: 0;
}

.dashboardList-itemTitle {
  font-family: var(--font-family);
  font-size: var(--font-md);
  font-weight: var(--font-weight-semibold);
  color: var(--white);
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboardList-itemDescription {
  font-family: var(--font-family);
  font-size: var(--font-sm);
  color: var(--white-muted);
  line-height: var(--line-height-normal);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  word-break: break-word;
}

.dashboardList-itemTagContainer {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  margin-top: var(--space-xs);
}

.dashboardList-itemTag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2xs);
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-family: var(--font-family);
  font-size: var(--font-xs);
  font-weight: var(--font-weight-medium);
  color: var(--white-muted);
  white-space: nowrap;
}

.dashboardList-itemTag i {
  font-size: 0.85em;
  opacity: 0.7;
}

.dashboardList-itemTag.tag-channel {
  color: var(--discord);
}

.dashboardList-itemTag.tag-role {
  color: var(--pink);
}

.dashboardList-itemTag.tag-status {
  color: var(--success);
}

.dashboardList-itemTag.tag-warning {
  background: var(--warning-faint);
  border-color: var(--warning-dim);
  color: var(--warning);
}

.dashboardList-itemTag.tag-error {
  background: var(--danger-faint);
  border-color: var(--danger-dim);
  color: var(--danger);
}

.dashboardList-messageStatus {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font-family: var(--font-family);
  font-size: var(--font-xs);
  font-weight: var(--font-weight-semibold);
  margin-top: var(--space-xs);
}

.dashboardList-messageStatus i {
  font-size: 0.9em;
  opacity: 0.8;
}

.dashboardList-messageStatus--deleted, .dashboardList-messageStatus--not-posted {
  color: var(--warning);
}

.dashboardList-messageStatus--posted, .dashboardList-messageStatus--exists {
  color: var(--success);
}

.dashboardList-messageStatus--draft {
  color: var(--white-muted);
}

.dashboardList-messageStatus--error {
  color: var(--danger);
}

.dashboardList-statusUpdated {
  animation: statusFlash 0.6s ease;
}

@keyframes statusFlash {
  0% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.dashboardList-statusBadge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-2xs) var(--space-sm);
  border-radius: var(--radius-xs);
  font-family: var(--font-family);
  font-size: var(--font-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
}

.dashboardList-statusBadge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.dashboardList-statusBadge.status-active {
  background: var(--success-faint);
  color: var(--success);
}

.dashboardList-statusBadge.status-inactive {
  background: var(--white-ghost);
  color: var(--white-dim);
}

.dashboardList-statusBadge.status-error {
  background: var(--danger-faint);
  color: var(--danger);
}

.dashboardList-statusBadge.status-pending {
  background: var(--warning-faint);
  color: var(--warning);
}

.dashboardList-itemActions {
  display: flex;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.dashboardList-editButton, .dashboardList-deleteButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--btn-padding-sm);
  font-family: var(--font-family);
  font-size: var(--font-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  background: var(--black-lighter);
  color: var(--white);
  border: var(--border-normal) solid var(--white-faint);
}

.dashboardList-editButton {
  border-color: var(--blue);
  box-shadow: 2px 2px 0 var(--blue-dark);
}

.dashboardList-editButton:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--blue-dark);
  border-color: var(--blue-light);
}

.dashboardList-editButton:active {
  transform: translate(0, 0);
  box-shadow: 1px 1px 0 var(--blue-dark);
}

.dashboardList-deleteButton {
  border-color: var(--danger);
  box-shadow: 2px 2px 0 var(--danger-dark);
}

.dashboardList-deleteButton:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--danger-dark);
  border-color: var(--danger-light);
}

.dashboardList-deleteButton:active {
  transform: translate(0, 0);
  box-shadow: 1px 1px 0 var(--danger-dark);
}

.dashboardList-editButton {
  border-color: var(--blue);
  box-shadow: 2px 2px 0 var(--blue-dark);
}

.dashboardList-editButton:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--blue-dark);
  border-color: var(--blue-light);
}

.dashboardList-editButton:active {
  transform: translate(0, 0);
  box-shadow: 1px 1px 0 var(--blue-dark);
}

.dashboardList-deleteButton {
  border-color: var(--danger);
  box-shadow: 2px 2px 0 var(--danger-dark);
}

.dashboardList-deleteButton:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--danger-dark);
  border-color: var(--danger-light);
}

.dashboardList-deleteButton:active {
  transform: translate(0, 0);
  box-shadow: 1px 1px 0 var(--danger-dark);
}

.dashboardList-icon {
  width: 16px;
  height: 16px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}

.dashboardList-addButton .dashboardList-icon {
  width: 16px;
  height: 16px;
}

.dashboardList-editButton .dashboardList-icon, .dashboardList-deleteButton .dashboardList-icon {
  width: 16px;
  height: 16px;
}

.dashboardList-saveAndRepostButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--btn-padding-md);
  font-family: var(--font-family);
  font-size: var(--font-sm);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
  background: var(--black-lighter);
  color: var(--white);
  border: var(--border-normal) solid var(--green, #57f287);
  box-shadow: 2px 2px 0 var(--green-dark, #3ba55c);
}

.dashboardList-saveAndRepostButton:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0 var(--green-dark, #3ba55c);
  border-color: var(--green-light, #7dff9f);
}

.dashboardList-saveAndRepostButton:active {
  transform: translate(0, 0);
  box-shadow: 1px 1px 0 var(--green-dark, #3ba55c);
}

.dashboardList-saveAndRepostButton:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.dashboardList-saveAndRepostButton i {
  font-size: 12px;
}

.dashboardList-emptyContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--black-muted);
  border: 1px dashed var(--white-faint);
  border-radius: var(--radius-sm);
  text-align: center;
}

.dashboardList-emptyState {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  width: 100%;
}

.dashboardList-emptyIcon {
  font-size: var(--font-4xl);
  margin-bottom: var(--space-md);
  opacity: 0.4;
}

.dashboardList-emptyIconImage {
  width: 48px;
  height: 48px;
  display: block;
}

.dashboardList-emptyText {
  font-family: var(--font-family);
  font-size: var(--font-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--white);
  margin-bottom: var(--space-xs);
}

.dashboardList-emptySubtext {
  font-family: var(--font-family);
  font-size: var(--font-sm);
  color: var(--white-muted);
  margin-bottom: var(--space-lg);
}

.dashboardList-emptyButton {
  padding: var(--btn-padding-md);
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-sm);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  background: var(--black-lighter);
  color: var(--white);
  border: var(--border-normal) solid var(--pink);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md) var(--pink-darker);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dashboardList-emptyButton:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-xl) var(--pink-darker);
  border-color: var(--white);
}

.dashboardList-emptyButton:active {
  transform: translate(0, 0);
  box-shadow: var(--shadow-xs) var(--pink-darker);
}

.dashboardList-form {
  display: none;
  flex-direction: column;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: var(--black-muted);
  border: var(--border-normal) solid var(--white-faint);
  border-radius: var(--radius-sm);
  box-shadow: 2px 2px 0 var(--white-ghost);
  margin-bottom: var(--space-md);
}

.dashboardList-form.visible {
  display: flex;
}

.dashboardList-formWrapper {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  padding: var(--space-lg);
  background: var(--black-soft);
  border-radius: var(--radius-sm);
}

.dashboardList-formHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.dashboardList-formTitle {
  font-family: var(--font-family);
  font-size: var(--font-lg);
  font-weight: var(--font-weight-bold);
  color: var(--white);
  margin: 0;
}

.dashboardList-formClose {
  background: transparent;
  border: none;
  color: var(--white-muted);
  cursor: pointer;
  padding: var(--space-xs);
  border-radius: var(--radius-xs);
  transition: all 0.2s ease;
  font-size: var(--font-xl);
  line-height: 1;
}

.dashboardList-formClose:hover {
  background: var(--white-ghost);
  color: var(--white);
}

.dashboardList-formActions {
  display: flex;
  gap: var(--space-sm);
  justify-content: flex-end;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--white-faint);
}

.dashboardList-saveButton, .dashboardList-saveAsDraftButton, .dashboardList-cancelButton, .dashboardList-backButton {
  padding: var(--btn-padding-md);
  font-family: var(--font-family);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-sm);
  letter-spacing: var(--letter-spacing-wide);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dashboardList-saveButton {
  background: var(--black-lighter);
  color: var(--white);
  border: var(--border-normal) solid var(--success);
  box-shadow: var(--shadow-md) var(--success-dark);
}

.dashboardList-saveAsDraftButton {
  background: var(--black-lighter);
  color: var(--white);
  border: var(--border-normal) solid var(--blue);
  box-shadow: var(--shadow-md) var(--blue-dark);
}

.dashboardList-saveButton:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-xl) var(--success-dark);
  border-color: var(--white);
}

.dashboardList-saveButton:active {
  transform: translate(0, 0);
  box-shadow: var(--shadow-xs) var(--success-dark);
}

.dashboardList-saveButton:disabled {
  background: var(--black-muted);
  color: var(--white-dim);
  border-color: var(--white-faint);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.dashboardList-saveAsDraftButton:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-xl) var(--blue-dark);
  border-color: var(--white);
}

.dashboardList-saveAsDraftButton:active {
  transform: translate(0, 0);
  box-shadow: var(--shadow-xs) var(--blue-dark);
}

.dashboardList-saveAsDraftButton:disabled {
  background: var(--black-muted);
  color: var(--white-dim);
  border-color: var(--white-faint);
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.dashboardList-cancelButton, .dashboardList-backButton {
  background: var(--black-lighter);
  color: var(--white);
  border: var(--border-normal) solid var(--white-faint);
  box-shadow: var(--shadow-md) var(--black-lightest);
}

.dashboardList-cancelButton:hover, .dashboardList-backButton:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-xl) var(--black-lightest);
  border-color: var(--white-dim);
}

.dashboardList-cancelButton:active, .dashboardList-backButton:active {
  transform: translate(0, 0);
  box-shadow: var(--shadow-xs) var(--black-lightest);
}

.dashboard-toastContainer {
  position: fixed;
  top: var(--space-md);
  right: var(--space-md);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  pointer-events: none;
}

.dashboard-toast {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  background: var(--black-light);
  border: 1px solid var(--white-faint);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 20px var(--black-a50);
  min-width: 280px;
  max-width: 380px;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

.dashboard-toast.show {
  opacity: 1;
  transform: translateX(0);
}

.dashboard-toast.hiding {
  opacity: 0;
  transform: translateX(100%);
}

.dashboard-toast-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-sm);
}

.dashboard-toast--success {
  border-color: var(--success-dim);
}

.dashboard-toast--success .dashboard-toast-icon {
  background: var(--success-dim);
  color: var(--success);
}

.dashboard-toast--error {
  border-color: var(--danger-dim);
}

.dashboard-toast--error .dashboard-toast-icon {
  background: var(--danger-dim);
  color: var(--danger);
}

.dashboard-toast--info {
  border-color: var(--blue-dim);
}

.dashboard-toast--info .dashboard-toast-icon {
  background: var(--blue-dim);
  color: var(--blue);
}

.dashboard-toast--warning {
  border-color: var(--warning-dim);
}

.dashboard-toast--warning .dashboard-toast-icon {
  background: var(--warning-dim);
  color: var(--warning);
}

.dashboard-toast-content {
  flex: 1;
  font-family: var(--font-family);
  font-size: var(--font-sm);
  color: var(--white);
  line-height: var(--line-height-normal);
}

.dashboard-toast-close {
  background: transparent;
  border: none;
  color: var(--white-muted);
  cursor: pointer;
  padding: var(--space-xs);
  border-radius: var(--radius-xs);
  transition: all 0.2s ease;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard-toast-close:hover {
  background: var(--white-ghost);
  color: var(--white);
}

.dashboard-toast-close svg {
  width: 12px;
  height: 12px;
}

.dashboardList-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-xl);
  background: var(--black-muted);
  border: 1px solid var(--white-faint);
  border-radius: var(--radius-sm);
}

.dashboardList-loadingSpinner {
  width: 24px;
  height: 24px;
  border: 2px solid var(--white-faint);
  border-top-color: var(--blue);
  border-radius: 50%;
  animation: dashboardList-spin 0.8s linear infinite;
}

@keyframes dashboardList-spin {
  to {
    transform: rotate(360deg);
  }
}

.dashboardList-loadingText {
  margin-left: var(--space-md);
  font-family: var(--font-family);
  font-size: var(--font-sm);
  color: var(--white-muted);
}

.dashboardList-searchContainer {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.dashboardList-searchInput {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  background: var(--white-a03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--white-a08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-family);
  font-size: var(--font-sm);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-fast);
}

.dashboardList-searchInput::placeholder {
  color: var(--white-dim);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  font-size: var(--font-xs);
}

.dashboardList-searchInput:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white-ghost);
  box-shadow: 2px 2px 0 var(--blue-dim), inset 0 1px 0 var(--white-a10);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dashboardList-formModal {
  z-index: 10002;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.dashboardList-formModal .dashboardList-formModal-content {
  position: relative;
  width: 100%;
  max-width: min(920px, calc(100vw - (var(--space-md) * 2)));
  max-height: calc(100vh - (var(--space-md) * 2));
  border: 2px solid var(--pink);
  border-radius: 8px;
  background: var(--black-muted);
  box-shadow: 8px 8px 0 var(--pink-darker);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  transform: translate(-4px, -4px);
}

.dashboardList-formModal .dashboardList-formModal-body {
  overflow-y: auto;
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.dashboardList-formModal .dashboardList-form {
  display: flex;
  margin-bottom: 0;
  border: 0;
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.dashboardList-formModal .dashboardList-formContent {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.dashboardList-formModal .dashboardList-formFields {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.dashboardList-formModal .dashboardList-formFields .dashboardCards-grid, .dashboardList-formModal .dashboardList-formFields .dashboardInput-number-wrapper, .dashboardList-formModal .dashboardList-formFields .dashboardInput-text-wrapper, .dashboardList-formModal .dashboardList-formFields .dashboardInputs-switch-content {
  margin-bottom: 0 !important;
}

.dashboardList-formModal .dashboardList-formFields .dashboardLayout-divider {
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs);
}

.dashboardList-formModal .dashboardList-backButton {
  display: none !important;
}

.dashboardList-formModal .dashboardList-formHeader:has(.dashboardList-backButton:only-child) {
  display: none;
}

.dashboardList-formModal .dashboard-modal-header {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 2px solid var(--white-faint);
  flex-shrink: 0;
}

.dashboardList-formModal .dashboard-modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  background: var(--black-lighter);
  color: var(--white);
  border: 2px solid var(--white-a30);
  border-radius: 6px;
  box-shadow: 4px 4px 0 var(--white-a10);
  line-height: 1;
}

.dashboardList-formModal .dashboard-modal-close:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--white-faint);
  border-color: var(--white-a50);
  color: var(--white);
}

.dashboardList-formModal .dashboard-modal-close:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--white-a12);
}

.dashboardList-formModal .dashboard-modal-close svg {
  width: 18px;
  height: 18px;
}

.dashboardList-formModal .dashboardList-formActions {
  display: flex;
  gap: var(--space-md);
  justify-content: flex-end;
  margin-top: var(--space-md);
  padding: var(--space-md) var(--space-xl) 0;
  border-top: 2px solid var(--white-faint);
  width: calc(100% + (var(--space-xl) * 2));
  margin-left: calc(var(--space-xl) * -1);
  margin-right: calc(var(--space-xl) * -1);
  box-sizing: border-box;
}

.dashboardList-formModal .dashboardList-cancelButton, .dashboardList-formModal .dashboardList-backButton, .dashboardList-formModal .dashboardList-saveButton, .dashboardList-formModal .dashboardList-saveAsDraftButton, .dashboardList-formModal .dashboardList-saveAndRepostButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: var(--btn-padding-md);
  font-size: var(--font-sm);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family);
  text-transform: uppercase;
  letter-spacing: var(--letter-spacing-wide);
  border-radius: 8px;
  border-width: 2px;
  border-style: solid;
}

.dashboardList-formModal .dashboardList-cancelButton, .dashboardList-formModal .dashboardList-backButton {
  background: var(--black-lighter);
  color: var(--white);
  border-color: var(--white-a30);
  box-shadow: 4px 4px 0 var(--white-faint);
}

.dashboardList-formModal .dashboardList-cancelButton:hover, .dashboardList-formModal .dashboardList-backButton:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--white-a20);
  border-color: var(--white-a50);
}

.dashboardList-formModal .dashboardList-cancelButton:active, .dashboardList-formModal .dashboardList-backButton:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--white-faint);
}

.dashboardList-formModal .dashboardList-saveButton {
  background: var(--black-lighter);
  color: var(--white);
  border-color: var(--pink);
  box-shadow: 4px 4px 0 var(--pink-darker);
}

.dashboardList-formModal .dashboardList-saveButton:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--pink-darker);
  border-color: var(--pink);
}

.dashboardList-formModal .dashboardList-saveButton:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--pink-darker);
}

.dashboardList-formModal .dashboardList-saveAsDraftButton {
  background: var(--black-lighter);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 4px 4px 0 var(--blue-dark);
}

.dashboardList-formModal .dashboardList-saveAndRepostButton {
  background: var(--black-lighter);
  color: var(--white);
  border-color: var(--green, #57f287);
  box-shadow: 4px 4px 0 var(--green-dark, #3ba55c);
}

.dashboardList-formModal .dashboardList-saveAsDraftButton:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--blue-dark);
  border-color: var(--blue);
}

.dashboardList-formModal .dashboardList-saveAndRepostButton:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--green-dark, #3ba55c);
  border-color: var(--green, #57f287);
}

.dashboardList-formModal .dashboardList-saveAsDraftButton:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--blue-dark);
}

.dashboardList-formModal .dashboardList-saveAndRepostButton:active {
  transform: translate(0, 0);
  box-shadow: 2px 2px 0 var(--green-dark, #3ba55c);
}

.dashboardList-formModal .dashboardList-saveButton:disabled, .dashboardList-formModal .dashboardList-saveAsDraftButton:disabled, .dashboardList-formModal .dashboardList-saveAndRepostButton:disabled, .dashboardList-formModal .dashboardList-cancelButton:disabled, .dashboardList-formModal .dashboardList-backButton:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.dashboardList-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 0.75rem 1rem 1rem;
  flex-wrap: wrap;
}

.dashboardList-paginationInfo {
  font-family: var(--font-family);
  font-size: var(--font-xs);
  color: var(--white-dim);
  font-weight: var(--font-weight-semibold);
}

.dashboardList-paginationControls {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.dashboardList-paginationBtn {
  padding: 0.45rem 0.8rem;
  font-family: var(--font-family);
  font-size: var(--font-xs);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-sm);
  border: var(--border-normal) solid var(--white-faint);
  background: var(--black-lighter);
  color: var(--white);
  box-shadow: var(--shadow-sm) var(--black-lightest);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dashboardList-paginationBtn:not(:disabled):hover {
  transform: translate(-1px, -1px);
  box-shadow: var(--shadow-md) var(--black-lightest);
  border-color: var(--white-dim);
}

.dashboardList-paginationBtn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

.dashboardList-paginationPage {
  min-width: 64px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: var(--font-sm);
  color: var(--white);
  font-weight: var(--font-weight-bold);
}

@media (max-width: 768px) {
  .dashboardList-item {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .dashboardList-itemActions {
    width: 100%;
    justify-content: stretch;
  }
}

@media (max-width: 768px) {
  .dashboardList-editButton, .dashboardList-deleteButton {
    flex: 1;
  }
}

@media (max-width: 768px) {
  .dashboard-toastContainer {
    left: var(--space-md);
    right: var(--space-md);
  }
}

@media (max-width: 768px) {
  .dashboard-toast {
    min-width: auto;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .dashboardList-header {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .dashboardList-controls {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .dashboardList-searchWrapper {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .dashboardList-addButton {
    width: 100%;
    justify-content: center;
    padding: var(--btn-padding-md);
  }
}

@media (max-width: 768px) {
  .dashboardList-item {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
  }
}

@media (max-width: 768px) {
  .dashboardList-itemActions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    width: 100%;
  }
}

@media (max-width: 768px) {
  .dashboardList-editButton, .dashboardList-deleteButton {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .dashboardList-saveAndRepostButton {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .dashboardList-form {
    padding: var(--space-md);
  }
}

@media (max-width: 768px) {
  .dashboardList-formActions {
    flex-direction: column;
    gap: var(--space-sm);
  }
}

@media (max-width: 768px) {
  .dashboardList-saveButton, .dashboardList-saveAsDraftButton, .dashboardList-cancelButton, .dashboardList-backButton {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .dashboardList-itemActions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .dashboardList-header {
    padding: 12px;
  }
}

