html, body {
  height: 100%;
}

body {
  margin: 0;
  overflow: hidden;
}

#blazor-error-ui {
  background: lightyellow;
  bottom: 0;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .reload {
  display: inline-block;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

/* Skeleton Animation like YouTube */
.rz-skeleton-animated {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: rz-skeleton-loading 1.5s infinite;
}


/* Drag and Drop Visuals */
.drop-target-above {
    border-top: 3px solid #007bff !important;
}

.drop-target-below {
    border-bottom: 3px solid #007bff !important;
}

.drag-handle-arrows {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #bdbdbd;
    padding: 0 5px;
}

.rz-listbox-item[draggable="true"]:hover {
    background-color: #f8f9fa;
}

.rz-listbox-item.dragging {
    opacity: 0.5;
    background-color: #e9ecef;
}

