

button.primary { text-transform: none; }
.flex { flex: 1; }
.noflex { flex: 0 0 auto !important; }

input[type=text], textarea, select, button {
    margin-bottom: 0px;
}

button.primary:disabled {
  cursor: not-allowed;
  color: #8A9AA0;
  background: #DBE4E7;
  text-shadow: none;
  border: 1px solid #AFAFAF;
  border-top: 1px solid #C4C4C4;
  border-left: 1px solid #C4C4C4;
  -webkit-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.35);
  -moz-box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.35);
  box-shadow: 0px 1px 2px 0px rgba(0,0,0,0.35);
}


.custom-qtip {
  background: #222;
  color: #fff;
  border: 1px solid #555;
  border-radius: 5px;
  font-size: 14px;
  line-height: 1.5;
}
.custom-qtip .qtip-content {
  padding: 5px 10px;
}
.custom-qtip .qtip-tip {
  background: #222;
  border-color: #222;
}



svg.icon  {
    stroke: #919192;
    width: 24px;
    height: 24px;
    margin-right: 5px;
}


 #testing-message {
    position: fixed;
    top: 10px;
    right: 10px;
    background: #ffeb3b;
    color: #000;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    z-index: 9999;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}


/* Animated Icon */
.upload-area-custom {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  padding: 30px 40px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  cursor: pointer;
}

.upload-area-custom i {
  animation: bounce 2s infinite;
  color: #007BFF;
  font-size: 3rem;
  margin-bottom: 10px;
}

.upload-area-custom span {
  font-weight: bold;
  color: #333;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
