
/* ===== BUTTONS ===== */
.btn {
    border-radius: 8px !important;
    font-weight: 500 !important;
    font-size: .875rem !important;
    transition: all .18s var(--dp-ease) !important;
    letter-spacing: .01em;
}
.btn-primary {
    border: none !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(67,97,238,.3) !important;
}
.btn-primary:hover, .btn-primary:focus {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 14px rgba(67,97,238,.4) !important;
}
.btn-secondary {
    border: 1px solid var(--dp-gray-200) !important;
    box-shadow: var(--dp-shadow-sm) !important;
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444, #dc2626) !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(239,68,68,.3) !important;
}
.btn-danger:hover { transform: translateY(-1px) !important; box-shadow: 0 4px 12px rgba(239,68,68,.4) !important; }
.btn-warning {
    background: linear-gradient(135deg, #f59e0b, #d97706) !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(245,158,11,.3) !important;
}
.btn-warning:hover { transform: translateY(-1px) !important; }
.btn-success {
    background: linear-gradient(135deg, #10b981, #059669) !important;
    border: none !important;
    box-shadow: 0 2px 8px rgba(16,185,129,.3) !important;
}
.btn-falcon-primary {
    
    padding: 6px 14px !important;
    border-radius: 8px !important;
    font-size: .8125rem !important;
}
.btn-falcon-primary:hover {
    border-color: #c7d2fe !important;
}

/* ===== ALERTS ===== */
.alert {
    border-radius: var(--dp-radius) !important;
    border: none !important;
}
.alert-warning {
    background: #fffbeb !important;
    border-left: 4px solid #f59e0b !important;
    color: #78350f !important;
}
.alert-danger {
    background: #fef2f2 !important;
    border-left: 4px solid #ef4444 !important;
    color: #7f1d1d !important;
}
.alert-success {
    background: #ecfdf5 !important;
    border-left: 4px solid #10b981 !important;
    color: #064e3b !important;
}
.alert .bg-warning.icon-item,
.alert .bg-danger.icon-item,
.alert .bg-success.icon-item {
    border-radius: 10px !important;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.red {
    color:red;
}

.green {
    color:green;
}

#sig-canvas {
    border: 2px dotted #CCCCCC;
    border-radius: 15px;
    cursor: crosshair;
}

.sig-spot {
    border: 2px dotted #CCCCCC;
    border-radius: 15px;
    cursor: crosshair;
}

.capital 
{
    text-transform:capitalize;
}

.spinner_holder{
    position: absolute;
    top: 35%;
    left: 50%;
    width: 200px;
    margin-left: -100px;
    margin-top: -26px;
    text-align: center;
    padding: 1em 0;
    z-index:500;
}


.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent white background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000; /* Ensure it's above other content */
}

.spinnerInOverlay {
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #3498db; /* Blue */
    width: 40px;
    height: 40px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}



/* NEWEST SPINNER */
/** SPINNER **/
.spinner-loading {
    position: fixed;
    z-index: 999;
    overflow: show;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
  }
  
  /* Transparent Overlay */
  .spinner-loading:before {
    content: '';
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.5);
  }
  
  /* :not(:required) hides these rules from IE9 and below */
  .spinner-loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
  }
  
  .spinner-loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 50px;
    height: 50px;
    margin-top: -0.5em;
  
    border: 15px solid rgba(33, 150, 243, 1.0);
    border-radius: 100%;
    border-bottom-color: transparent;
    -webkit-animation: spinner 1s linear 0s infinite;
    animation: spinner 1s linear 0s infinite;
  
  
  }