.uepc-action-buttons-wrapper {
  margin: 20px 0;
  padding: 18px 20px;
  background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
  border: 1px solid #cbd5e1;
  border-left: 5px solid #2563eb;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-family: 'Noto Sans Telugu', system-ui, -apple-system, sans-serif;
}

.uepc-brand-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.uepc-pulse-dot {
  width: 10px;
  height: 10px;
  background-color: #16a34a;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7);
  animation: uepc-pulse 1.8s infinite;
}

@keyframes uepc-pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(22, 163, 74, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}

.uepc-brand-title {
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.uepc-buttons-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.uepc-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none !important;
  line-height: 1.2;
}

.uepc-btn-generate {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.uepc-btn-generate:hover {
  background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.uepc-btn-share {
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.uepc-btn-share:hover {
  background: linear-gradient(135deg, #166534 0%, #15803d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
}

.uepc-icon-box {
  font-size: 18px;
}

.uepc-btn-label-box {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.uepc-text-main {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.uepc-text-sub {
  font-size: 11px;
  opacity: 0.85;
  color: #e2e8f0;
}

.uepc-tag-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: #ffffff;
  margin-left: auto;
}