.img_logo {
  width: 200px;
}

.curs_pointer_sk {
  cursor: pointer
}

.border_form_uploaded {
  border: 3px dashed #ccc;
  border-radius: 10px;
  padding: 15px;
  background: #fff;
}


/* Основной контейнер дропзоны */
.sk_dropzone_container {
  border: 1px dashed #728fba;
  /* Пунктир в цвет твоих инпутов */
  border-radius: 8px;
  /* Такое же скругление как на скрине */
  padding: 20px;
  background-color: #e8f2fd;
  /* Легкий фон, чтобы выделить зону */
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

/* Текст внутри */
.sk_dropzone_placeholder {
  color: #728fba;
  font-size: 16px;
  border-bottom: 2px dotted #a7bbd8;
}

/* Тот самый класс, который мы добавляем через JS при наведении */
.sk_dropzone_container.border_form_uploaded {
  border-color: #f8a5a5;
  /* Цвет твоей кнопки "Добавить" */
  background-color: #fff1f1;
  /* Нежно-розовый оттенок */
  transform: scale(1.01);
  /* Легкий эффект увеличения */
}

/* Стили превьюшек внутри этого блока */
.sk_preview_container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: left;
}

.sk_img_item {
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #eee;
}

.sk_img_remove {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 20px;
  height: 20px;
  background: #ff4d4d;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 14px;
  font-size: 16px;
  cursor: pointer;
  display: block;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border: 1px solid white;
  z-index: 10;
}

.sk_img_item {
  position: relative;
  display: inline-block;
}

.sk_img_remove:hover {
  background: #cc0000;
  transform: scale(1.1);
}
#sk_upload_loader {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.sk_loader_spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: sk_spin 0.8s linear infinite;
}




@keyframes sk_spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}