/* =========================================================
   TChat Call UI
   Khusus tampilan tombol Telepon & Video Call
   Logic tetap berada di app.js
   ========================================================= */

.call-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
}

.call-action-btn {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid #dfe7f1;
  border-radius: 13px;
  background: #ffffff;
  color: #0b6bff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background .18s ease,
    border-color .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.call-action-btn svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.call-action-btn:hover:not(:disabled) {
  background: #f0f6ff;
  border-color: #bcd7ff;
  box-shadow: 0 4px 14px rgba(11, 107, 255, .12);
  transform: translateY(-1px);
}

.call-action-btn:active:not(:disabled) {
  transform: translateY(0);
}

.call-action-btn:disabled {
  opacity: .48;
  cursor: not-allowed;
  box-shadow: none;
}

@media (max-width: 720px) {
  .call-actions {
    gap: 6px;
    margin-left: 4px;
  }

  .call-action-btn {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .call-action-btn svg {
    width: 19px;
    height: 19px;
  }
}