.cockpit_carousel {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.cockpit_carousel__track {
  position: relative;
  overflow: hidden;
}

.cockpit_carousel__track-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.cockpit_carousel__track-item {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cockpit_carousel__track-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.cockpit_carousel__track-item img.loaded {
}

.cockpit_carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: transparent;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 2;
}

.cockpit_carousel__btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.cockpit_carousel__btn.prev {
  left: 10px;
}

.cockpit_carousel__btn.next {
  right: 10px;
}

.cockpit_carousel__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  background-color: rgba(203, 203, 203, 0.4);
  overflow: hidden;
  z-index: 10;
}

.cockpit_carousel__progress-fill {
  height: 100%;
  width: 0;
  background-color: #007bff;
  transition: width linear;
}

.cockpit_carousel__pagination {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 4px;
  z-index: 3;
}

.cockpit_carousel__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  background-color: rgba(203, 203, 203, 0.4);
  transition: background-color 0.3s;
  cursor: pointer;
}

.cockpit_carousel__dot.active {
  background: #007bff;
  transform: scale(1.2);
}

.cockpit_carousel__track-item-content {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Simple File List Styles */
.cc-file-list {
  margin-top: 0.75rem;
}

.cc-file-list__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cc-file-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 0.25rem;
}

.cc-file-list__name {
  flex: 1;
  font-size: 0.875rem;
  color: #212529;
}

.cc-file-list__remove {
  background: none;
  border: none;
  color: #6c757d;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 0.25rem;
  transition: opacity 0.2s, color 0.2s;
  opacity: 0.6;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-file-list__remove:hover {
  opacity: 1;
  color: #495057;
}













   