.float{
	position:fixed;
	bottom:40px;
	right:40px;
	z-index:999;
}

i.z-icon.icon-default-phone-ico {
    color: white!important;
}

/* Call confirmation popup */
.call-confirm-popup {
  position: absolute;
  bottom: 110px;
  right: 40px;
  background: white;
  border: 2px solid #7ed321;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  width: 240px;
  display: none;
  z-index: 1000;
  transform: scale(0.8) translateY(20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@media (min-width: 768px) {
  .call-confirm-popup {
    bottom: 120px;
    right: 20px;
  }
}

.call-confirm-popup.show {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.call-confirm-popup.hangup {
  border-color: #dc3545;
  background: #fff5f5;
}
.call-confirm-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 50px;
  border: 8px solid transparent;
  border-top-color: #7ed321;
  transition: border-top-color 0.3s ease;
}
.call-confirm-popup.hangup::after {
  border-top-color: #dc3545;
}

.popup-title {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
  text-align: center;
}
.popup-subtitle {
  font-size: 13px;
  color: #666;
  text-align: center;
  margin-bottom: 15px;
}
.popup-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.popup-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
  min-width: 80px;
}
.popup-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.btn-yes { 
  background: linear-gradient(135deg, #7ed321 0%, #6bc91a 100%);
  color: white;
}
.btn-no { 
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  color: #495057;
}
.btn-hangup {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  color: white;
}

/* Compact call status panel above button */
.call-status-panel {
  position: fixed;
  bottom: 120px;
  right: 45px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  padding: 6px 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  display: none;
  z-index: 1001;
  backdrop-filter: blur(10px);
}
.call-status-panel.show {
  display: block;
  animation: slideInUp 0.3s ease-out;
}
@keyframes slideInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.call-status-content {
  display: flex;
  align-items: center;
  gap: 8px;
}
.call-timer {
  font-size: 12px;
  font-weight: 700;
  color: #333;
  font-family: monospace;
}
.call-action-btn {
  padding: 4px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #333;
  background: rgba(0, 0, 0, 0.1);
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.call-action-btn:hover {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

/* Hide widget's built-in timer and DTMF button when call is active */
.z-callme-widget.callme--speaking .z-callme-timer {
  display: none !important;
}
.z-callme-widget.callme--speaking .callme__dtmf-ico {
  display: none !important;
}
/* Hide widget's DTMF numpad completely */
.z-callme-widget.callme--speaking .callme-dtmf-numpad {
  display: none !important;
}

/* Custom DTMF numpad */
.custom-dtmf-panel {
  position: fixed;
  bottom: 180px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  padding: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  display: none;
  z-index: 1002;
  backdrop-filter: blur(10px);
  width: 180px;
}
.custom-dtmf-panel.show {
  display: block;
  animation: slideInUp 0.3s ease-out;
}
.dtmf-title {
  font-size: 11px;
  color: #666;
  text-align: center;
  margin-bottom: 8px;
  font-weight: 600;
}
.dtmf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.dtmf-key {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.05);
  color: #333;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dtmf-key:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}
.dtmf-key:active {
  background: rgba(0, 0, 0, 0.2);
  transform: scale(0.95);
}
.dtmf-key.zero {
  grid-column: 2;
}
#callConfirmPopup{
	z-index: 99999;
}