*{ 
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-weight: 600;
  /* user-select: none; 
  -webkit-user-select: none;
  -moz-user-select: none; 
  -ms-user-select: none;  */
}

  .config-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    display: block;
  }
  
/* --- TOAST MOTOR STYLE --- */

#toast-message {
  position: fixed;
  width: 350px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  top: 60px;
  left: 85%;
  transform: translateX(-50%);
  background: #393939;
  color: white;
  padding: 20px 7px;
  border-radius: 10px;
  font-size: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}

#toast-message.show {
  opacity: 1;
}

.toast-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
}

.toast-ok .toast-icon {
  background: #28a745;
}
.toast-ok .toast-icon::before {
  content: "✓";
}

.toast-error .toast-icon {
  background: #dc3545;
}
.toast-error .toast-icon::before {
  content: "✕";
}

.toast-warning .toast-icon {
  background: #ffc107;
  color: #333;
}
.toast-warning .toast-icon::before {
  content: "⚠";
}

.toast-text {
  line-height: 1.3;
}