.img_logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.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;
}

.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;
}


.menu-wrapper {
  position: relative;
  padding: 10px 20px 10px 0;
}

.menu-wrapper .custom-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
}

.menu-wrapper:hover .custom-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 16px;
  color: #212529;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: color 0.2s ease;
}

.dropdown-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 16px;
  width: 0;
  height: 2px;
  background-color: #f54748;
  transition: width 0.2s ease;
}

.dropdown-link:hover {
  color: #f54748;
}

.dropdown-link:hover::after {
  width: 30px;
}

.custom-dropdown li:not(:last-child) {
  margin-bottom: 4px;
}

.accordion-button:not(.collapsed) {
  color:#fc4d4e;
  background-color: #fff;
  border-left: 2px solid #fc4d4e;
}
.accordion-button:focus {
    box-shadow: none; 
    outline: none;
}

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

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