/* Universal ePaper Clip Pro - Advanced Frontend Styles */
.uepc-action-buttons-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0;
  padding: 16px 20px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border: 1px solid #334155;
  border-radius: 16px;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.3);
  color: #ffffff;
}

@media (min-width: 768px) {
  .uepc-action-buttons-wrapper {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.uepc-brand-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #93c5fd;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.uepc-pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 8px #34d399;
}

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

@media (min-width: 768px) {
  .uepc-buttons-group {
    width: auto;
  }
}

.uepc-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.uepc-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.uepc-btn:active {
  transform: scale(0.98);
}

.uepc-btn-generate {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  color: #ffffff;
}
.uepc-btn-generate:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.uepc-btn-share {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
}
.uepc-btn-share:hover {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.uepc-icon-box {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
}

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

.uepc-text-main {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.uepc-text-sub {
  font-size: 10px;
  opacity: 0.85;
  font-weight: 500;
}

.uepc-tag-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  letter-spacing: 0.5px;
}

@media print {
  .uepc-action-buttons-wrapper {
    display: none !important;
  }
}
