/* ===== ENHANCED PROFILE PAGE STYLES ===== */

/* ===== Loading Spinner ===== */
.loading-spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  color: #00ffff;
  font-size: 18px;
  gap: 12px;
}

.loading-spinner i {
  font-size: 28px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== Profile Notifications ===== */
.profile-notification {
  position: fixed;
  top: 100px;
  right: -400px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10000;
  min-width: 300px;
  max-width: 400px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transition: right 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.profile-notification.show {
  right: 20px;
}

.profile-notification i {
  font-size: 24px;
  flex-shrink: 0;
}

.profile-notification span {
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
}

.profile-notification.success {
  border-color: rgba(46, 213, 115, 0.5);
}

.profile-notification.success i {
  color: #2ed573;
}

.profile-notification.error {
  border-color: rgba(255, 107, 107, 0.5);
}

.profile-notification.error i {
  color: #ff6b6b;
}

.profile-notification.info {
  border-color: rgba(0, 191, 255, 0.5);
}

.profile-notification.info i {
  color: #00bfff;
}

/* ===== Enhanced Stats Cards ===== */
.stats-card {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.05) 0%, rgba(0, 204, 255, 0.05) 100%);
  border: 1px solid rgba(0, 255, 255, 0.2);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stats-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stats-card:hover {
  background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(0, 204, 255, 0.1) 100%);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.2);
}

.stats-card:hover::before {
  opacity: 1;
}

.stats-card i {
  font-size: 32px;
  color: #00ffff;
  transition: transform 0.3s ease;
}

.stats-card:hover i {
  transform: scale(1.1) rotate(5deg);
}

.stats-card h4 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 5px;
  font-weight: 700;
}

.stats-card p {
  font-size: 13px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== Enhanced Product Card ===== */
.product-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 20px;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.product-card:hover::before {
  left: 100%;
}

.product-card:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
  border-color: rgba(0, 255, 255, 0.3);
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.product-image {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  background: linear-gradient(135deg, #000, #1a1a1a);
  flex-shrink: 0;
  border: 2px solid rgba(0, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.product-card:hover .product-image {
  border-color: rgba(0, 255, 255, 0.3);
  transform: scale(1.05);
}

/* ===== Enhanced Order Card ===== */
.order-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.order-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(135deg, #00ffff, #00ccff);
  border-radius: 0 4px 4px 0;
  transition: height 0.3s ease;
}

.order-card:hover {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 100%);
  border-color: rgba(0, 255, 255, 0.3);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.order-card:hover::after {
  height: 100%;
}

/* ===== Enhanced Filter Buttons ===== */
.orders-filter {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
  flex-wrap: wrap;
  padding: 5px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 30px;
}

.filter-btn {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  color: #aaa;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(0, 255, 255, 0.2);
  transition: width 0.3s ease, height 0.3s ease;
}

.filter-btn:hover::before {
  width: 200%;
  height: 200%;
}

.filter-btn:hover {
  border-color: #00ffff;
  color: #00ffff;
}

.filter-btn.active {
  background: linear-gradient(135deg, #00ffff, #00ccff);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(0, 255, 255, 0.3);
}

/* ===== Enhanced Modal Animations ===== */
.modal-overlay.active .modal-content {
  animation: modalSlideIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-100px) scale(0.8);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* ===== Enhanced Button Styles ===== */
.btn-edit-profile,
.btn-add-product,
.btn-save {
  position: relative;
  overflow: hidden;
}

.btn-edit-profile::before,
.btn-add-product::before,
.btn-save::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-edit-profile:hover::before,
.btn-add-product:hover::before,
.btn-save:hover::before {
  width: 300px;
  height: 300px;
}

/* ===== Product Action Buttons Enhancement ===== */
.btn-product-action {
  position: relative;
  overflow: hidden;
}

.btn-product-action::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: width 0.4s ease, height 0.4s ease;
}

.btn-product-action:hover::after {
  width: 200px;
  height: 200px;
}

.btn-product-action i {
  transition: transform 0.3s ease;
}

.btn-product-action:hover i {
  transform: scale(1.2);
}

/* ===== Status Badge Enhancements ===== */
.product-status,
.order-status {
  position: relative;
  overflow: hidden;
}

.product-status::before,
.order-status::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  to {
    left: 100%;
  }
}

/* ===== Profile Avatar Enhancement ===== */
.profile-avatar-wrapper {
  position: relative;
  transition: transform 0.3s ease;
}

.profile-avatar-wrapper:hover {
  transform: scale(1.05);
}

.change-avatar-btn {
  transition: all 0.3s ease;
}

.change-avatar-btn:hover {
  transform: scale(1.15) rotate(15deg);
}

/* ===== Menu Item Enhancement ===== */
.menu-item {
  position: relative;
  overflow: hidden;
}

.menu-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #00ffff, transparent);
  transition: width 0.3s ease;
}

.menu-item:hover::before,
.menu-item.active::before {
  width: 100%;
}

.menu-item i {
  transition: transform 0.3s ease;
}

.menu-item:hover i {
  transform: translateX(5px);
}

/* ===== Responsive Enhancements ===== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .profile-notification {
    min-width: calc(100vw - 40px);
    max-width: calc(100vw - 40px);
    right: -100%;
  }

  .profile-notification.show {
    right: 20px;
  }

  .product-card {
    flex-direction: column;
  }

  .product-image {
    width: 100%;
    height: 200px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .orders-filter {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 255, 255, 0.3) rgba(0, 0, 0, 0.2);
  }

  .orders-filter::-webkit-scrollbar {
    height: 4px;
  }

  .orders-filter::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
  }

  .orders-filter::-webkit-scrollbar-thumb {
    background: rgba(0, 255, 255, 0.3);
    border-radius: 4px;
  }

  .filter-btn {
    white-space: nowrap;
  }
}

@media (max-width: 480px) {
  .profile-notification {
    padding: 14px 18px;
    font-size: 13px;
  }

  .profile-notification i {
    font-size: 20px;
  }

  .stats-card {
    padding: 15px;
  }

  .stats-card i {
    font-size: 24px;
  }

  .stats-card h4 {
    font-size: 22px;
  }

  .product-card {
    padding: 15px;
  }

  .order-card {
    padding: 18px;
  }
}

/* ===== Print Styles ===== */
@media print {
  .profile-sidebar,
  .notification-panel,
  .header,
  .btn-edit-profile,
  .btn-product-action,
  .change-avatar-btn,
  .profile-notification {
    display: none !important;
  }

  .profile-main {
    box-shadow: none;
    border: 1px solid #ddd;
  }

  .product-card,
  .order-card {
    page-break-inside: avoid;
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

/* ===== Accessibility Enhancements ===== */
.menu-item:focus,
.filter-btn:focus,
.btn-product-action:focus {
  outline: 2px solid #00ffff;
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .product-card,
  .order-card,
  .stats-card {
    border-width: 2px;
  }

  .btn-product-action,
  .filter-btn {
    border-width: 2px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===== Dark Mode Enhancements ===== */
@media (prefers-color-scheme: dark) {
  .product-card,
  .order-card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.6) 100%);
  }

  .stats-card {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.08) 0%, rgba(0, 204, 255, 0.08) 100%);
  }
}

/* ===== Skeleton Loading States ===== */
.skeleton {
  background: linear-gradient(90deg, 
    rgba(255, 255, 255, 0.05) 25%, 
    rgba(255, 255, 255, 0.1) 50%, 
    rgba(255, 255, 255, 0.05) 75%
  );
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
  border-radius: 8px;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton-text {
  height: 16px;
  margin-bottom: 8px;
}

.skeleton-title {
  height: 24px;
  width: 60%;
  margin-bottom: 12px;
}

.skeleton-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

/* ===== Tooltip Styles ===== */
[data-tooltip] {
  position: relative;
  cursor: help;
}

[data-tooltip]::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-5px);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  z-index: 1000;
}

[data-tooltip]::after {
  content: '';
  position: absolute;
  bottom: calc(100% + 2px);
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

[data-tooltip]:hover::before,
[data-tooltip]:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== Progress Bar ===== */
.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ffff, #00ccff);
  border-radius: 2px;
  transition: width 0.3s ease;
  position: relative;
  overflow: hidden;
}

.progress-bar-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

/* ===== Badge Styles ===== */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge.primary {
  background: rgba(0, 255, 255, 0.2);
  color: #00ffff;
  border: 1px solid rgba(0, 255, 255, 0.3);
}

.badge.success {
  background: rgba(46, 213, 115, 0.2);
  color: #2ed573;
  border: 1px solid rgba(46, 213, 115, 0.3);
}

.badge.danger {
  background: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.badge.warning {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.badge.info {
  background: rgba(0, 191, 255, 0.2);
  color: #00bfff;
  border: 1px solid rgba(0, 191, 255, 0.3);
}

/* ===== Action Icons Enhancement ===== */
.action-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
}

.action-icon:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.action-icon.edit {
  background: rgba(255, 193, 7, 0.1);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

.action-icon.edit:hover {
  background: rgba(255, 193, 7, 0.2);
}

.action-icon.delete {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
  border: 1px solid rgba(255, 107, 107, 0.3);
}

.action-icon.delete:hover {
  background: rgba(255, 107, 107, 0.2);
}

.action-icon.view {
  background: rgba(0, 191, 255, 0.1);
  color: #00bfff;
  border: 1px solid rgba(0, 191, 255, 0.3);
}

.action-icon.view:hover {
  background: rgba(0, 191, 255, 0.2);
}

/* ===== Grid View Toggle ===== */
.view-toggle {
  display: flex;
  gap: 8px;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px;
  border-radius: 8px;
}

.view-toggle-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 6px;
  color: #aaa;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
}

.view-toggle-btn:hover {
  color: #00ffff;
  background: rgba(0, 255, 255, 0.1);
}

.view-toggle-btn.active {
  color: #000;
  background: linear-gradient(135deg, #00ffff, #00ccff);
  box-shadow: 0 2px 8px rgba(0, 255, 255, 0.3);
}

/* ===== Search Box Enhancement ===== */
.profile-search {
  position: relative;
  margin-bottom: 20px;
}

.profile-search input {
  width: 100%;
  padding: 12px 45px 12px 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.profile-search input:focus {
  outline: none;
  border-color: #00ffff;
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.2);
}

.profile-search i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #00ffff;
  font-size: 18px;
  pointer-events: none;
}

/* ===== Pagination Styles ===== */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
}

.pagination-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #aaa;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 600;
}

.pagination-btn:hover {
  background: rgba(0, 255, 255, 0.1);
  border-color: #00ffff;
  color: #00ffff;
}

.pagination-btn.active {
  background: linear-gradient(135deg, #00ffff, #00ccff);
  border-color: transparent;
  color: #000;
  box-shadow: 0 2px 8px rgba(0, 255, 255, 0.3);
}

.pagination-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.pagination-btn:disabled:hover {
  background: rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
  color: #aaa;
}

/* ===== Timeline Styles (for order tracking) ===== */
.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  height: 100%;
  width: 2px;
  background: linear-gradient(180deg, #00ffff, transparent);
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  padding-bottom: 30px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00ffff, #00ccff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(0, 255, 255, 0.3);
  z-index: 1;
}

.timeline-content {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 15px;
}

.timeline-title {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.timeline-description {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
  margin-bottom: 8px;
}

.timeline-date {
  font-size: 12px;
  color: #00ffff;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ===== Card Stack Effect ===== */
.card-stack {
  position: relative;
}

.card-stack-item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-stack:hover .card-stack-item:nth-child(1) {
  transform: translateY(-8px);
  z-index: 3;
}

.card-stack:hover .card-stack-item:nth-child(2) {
  transform: translateY(-4px);
  z-index: 2;
}

/* ===== Confirmation Dialog ===== */
.confirmation-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.confirmation-overlay.show {
  opacity: 1;
  pointer-events: all;
}

.confirmation-dialog {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 2px solid rgba(0, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.confirmation-overlay.show .confirmation-dialog {
  transform: scale(1);
}

.confirmation-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.confirmation-icon.warning {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
  border: 2px solid rgba(255, 193, 7, 0.5);
}

.confirmation-icon.danger {
  background: rgba(255, 107, 107, 0.2);
  color: #ff6b6b;
  border: 2px solid rgba(255, 107, 107, 0.5);
}

.confirmation-title {
  font-size: 20px;
  color: #fff;
  text-align: center;
  margin-bottom: 15px;
}

.confirmation-message {
  font-size: 14px;
  color: #aaa;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 25px;
}

.confirmation-actions {
  display: flex;
  gap: 12px;
}

.confirmation-actions button {
  flex: 1;
  padding: 12px;
  border-radius: 25px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.confirmation-actions .btn-confirm {
  background: linear-gradient(135deg, #00ffff, #00ccff);
  color: #000;
}

.confirmation-actions .btn-confirm:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 255, 255, 0.4);
}

.confirmation-actions .btn-cancel-confirm {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.confirmation-actions .btn-cancel-confirm:hover {
  background: rgba(255, 255, 255, 0.15);
}