/* Bildirim Container */
#noti-message-container {
  position: fixed;
  /* top: 30px;
  right: 30px; */
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 420px;
}

/* Bildirim Kartı */
.noti-message {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  overflow: hidden;
  animation: slideIn 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  min-width: 380px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

@keyframes slideIn {
  from {
    transform: translateX(500px) rotate(10deg);
    opacity: 0;
  }
  to {
    transform: translateX(0) rotate(0deg);
    opacity: 1;
  }
}

.noti-message.removing {
  animation: slideOut 0.4s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards;
}

@keyframes slideOut {
  to {
    transform: translateX(500px) rotate(-10deg);
    opacity: 0;
  }
}

.noti-message-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.noti-message-icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  animation: pulse 2s infinite;
  opacity: 0.5;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.noti-message-content {
  flex: 1;
  padding-top: 2px;
}

.noti-message-title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #1a1a1a;
  letter-spacing: -0.3px;
}

.noti-message-message {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  font-weight: 500;
}

.noti-message-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #999;
  transition: all 0.3s;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: bold;
}

.noti-message-close:hover {
  background: rgba(0, 0, 0, 0.1);
  color: #333;
  transform: rotate(90deg);
}

/* Progress bar */
.noti-message-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5px;
  width: 100%;
  transform-origin: left;
  animation: progress 5s linear forwards;
  border-radius: 0 0 20px 20px;
}

@keyframes progress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}

/* Dekoratif arka plan efekti */
.noti-message::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Başarılı */
.noti-message.success .noti-message-icon {
  background: linear-gradient(135deg, #00b09b 0%, #96c93d 100%);
  color: white;
}

.noti-message.success .noti-message-progress {
  background: linear-gradient(90deg, #00b09b 0%, #96c93d 100%);
}

.noti-message.success::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #00b09b 0%, #96c93d 100%);
  border-radius: 20px 0 0 20px;
}

.noti-message.success .noti-message-title {
  color: #00b09b;
}

/* Hata */
.noti-message.error .noti-message-icon {
  background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
  color: white;
}

.noti-message.error .noti-message-progress {
  background: linear-gradient(90deg, #ff416c 0%, #ff4b2b 100%);
}

.noti-message.error::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #ff416c 0%, #ff4b2b 100%);
  border-radius: 20px 0 0 20px;
}

.noti-message.error .noti-message-title {
  color: #ff416c;
}

/* Uyarı */
.noti-message.warning .noti-message-icon {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.noti-message.warning .noti-message-progress {
  background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
}

.noti-message.warning::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #f093fb 0%, #f5576c 100%);
  border-radius: 20px 0 0 20px;
}

.noti-message.warning .noti-message-title {
  color: #f5576c;
}

/* Bilgi */
.noti-message.info .noti-message-icon {
  background: linear-gradient(135deg, #006754 0%, #004d3f 100%);
  color: white;
}

.noti-message.info .noti-message-progress {
  background: linear-gradient(90deg, #006754 0%, #004d3f 100%);
}

.noti-message.info::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #006754 0%, #004d3f 100%);
  border-radius: 20px 0 0 20px;
}

.noti-message.info .noti-message-title {
  color: #006754;
}

/* Parıltı efekti */
.noti-message-icon .sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: sparkle 1.5s infinite;
}

.noti-message-icon .sparkle:nth-child(1) {
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.noti-message-icon .sparkle:nth-child(2) {
  bottom: 10%;
  left: 10%;
  animation-delay: 0.5s;
}

.noti-message-icon .sparkle:nth-child(3) {
  top: 50%;
  right: -5%;
  animation-delay: 1s;
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  #noti-message-container {
    left: 15px !important;
    right: 15px !important;
    top: 15px !important;
    max-width: 100%;
    width: calc(100% - 30px);
    transform: none !important;
  }

  .noti-message {
    min-width: auto;
    padding: 15px 20px !important;
    border-radius: 10px !important;
    align-items: center !important;
  }
}

@media (max-width: 992px) {
  .noti-message {
    min-width: auto;
    padding: 15px 20px !important;
    border-radius: 10px !important;
    align-items: center !important;
  }
}

/* Payment Notifications Container */
.payment-notifications-container {
  position: fixed;
  top: 70px;
  right: 20px;
  width: 380px;
  max-height: 500px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateX(450px);
  transition: all 0.3s ease;
  z-index: 8999;
  border: 1px solid #e0e0e0;
}

.payment-notifications-container.show {
  opacity: 1;
  transform: translateX(0);
}

.notifications-header {
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #006754 0%, #004d3f 100%);
  border-radius: 12px 12px 0 0;
  color: white;
}

.notifications-header h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.clear-all-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 12px;
}

.clear-all-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.notifications-list {
  overflow-y: auto;
  max-height: 440px;
  padding: 12px;
}

.notifications-list::-webkit-scrollbar {
  width: 6px;
}

.notifications-list::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.notifications-list::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

.notifications-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Payment Notification Item */
.payment-notification-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  margin-bottom: 8px;
  background: #f8f9fa;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
  animation: slideInLeft 0.4s ease forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.payment-notification-item:hover {
  background: white;
  border-color: #006754;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
  transform: translateX(-4px);
}

.payment-notification-item.show {
  opacity: 1;
  transform: translateY(0);
}

.notification-content {
  flex: 1;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.notification-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #006754 0%, #004d3f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  flex-shrink: 0;
}

.notification-info {
  flex: 1;
  min-width: 0;
}

.notification-title {
  font-weight: 600;
  color: #333;
  font-size: 14px;
  margin-bottom: 4px;
}

.notification-details {
  font-size: 12px;
  color: #666;
  margin-bottom: 4px;
}

.payment-count {
  font-weight: 500;
  color: #006754;
}

.payment-separator {
  margin: 0 6px;
  color: #ccc;
}

.payment-time {
  color: #999;
}

.notification-amount {
  font-size: 14px;
  font-weight: 700;
  color: #4caf50;
}

.notification-action {
  display: flex;
  align-items: center;
  color: #999;
  font-size: 12px;
  transition: all 0.2s ease;
}

.payment-notification-item:hover .notification-action {
  color: #006754;
  transform: translateX(4px);
}

/* Payment Detail Modal */
.payment-detail-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  z-index: 9000;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.payment-detail-overlay.active {
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  pointer-events: auto;
}

.payment-detail-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: white;
  border-radius: 12px;
  max-width: 600px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  z-index: 9001;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.payment-detail-modal.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.payment-detail-modal::-webkit-scrollbar {
  width: 6px;
}

.payment-detail-modal::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.payment-detail-modal::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 10px;
}

.payment-detail-modal::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 24px 16px;
  border-bottom: 1px solid #f0f0f0;
  background: linear-gradient(135deg, #006754 0%, #004d3f 100%);
  border-radius: 12px 12px 0 0;
  color: white;
}

.modal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-title i {
  font-size: 20px;
}

.modal-close {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  transition: all 0.2s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
}

.modal-body {
  padding: 24px;
}

.detail-section {
  margin-bottom: 24px;
}

.detail-section:last-child {
  margin-bottom: 0;
}

.detail-header {
  font-weight: 600;
  color: #333;
  font-size: 14px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #006754;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: #666;
  font-weight: 500;
  font-size: 13px;
}

.detail-value {
  color: #333;
  font-weight: 500;
  font-size: 13px;
  text-align: right;
}

.payment-method-detail {
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e0e0e0;
}

.method-name {
  font-weight: 600;
  color: #333;
  font-size: 13px;
}

.method-info {
  display: flex;
  gap: 12px;
  align-items: center;
}

.method-count {
  font-size: 11px;
  color: #999;
  background: #e3f2fd;
  padding: 4px 8px;
  border-radius: 4px;
  color: #1976d2;
}

.method-amount {
  font-weight: 700;
  color: #4caf50;
  font-size: 13px;
}

.tips-section {
  background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
  padding: 12px;
  border-radius: 6px;
  border-left: 4px solid #ffc107;
}

.tips-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #f39c12;
  font-weight: 600;
  font-size: 13px;
}

.tips-header i {
  color: #ff9800;
}

.tips-amount {
  font-weight: 700;
  color: #ff9800;
  font-size: 16px;
  text-align: right;
}

.total-section {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  padding: 16px;
  border-radius: 8px;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.total-row {
  border: none;
  padding: 0;
}

.total-row .detail-label {
  font-weight: 700;
  color: #333;
  font-size: 14px;
}

.total-amount {
  font-weight: 700;
  color: #006754;
  font-size: 18px;
}

.beko-data-section {
  background: #f5f5f5;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}

.beko-data-content {
  background: white;
  padding: 12px;
  border-radius: 4px;
  font-size: 11px;
  color: #333;
  margin: 0;
  max-height: 150px;
  overflow-y: auto;
  border: 1px solid #e0e0e0;
}

.products-section {
  background: #f5f5f5;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  background: white;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  transition: all 0.2s ease;
}

.product-item:hover {
  background: #f9f9f9;
  border-color: #006754;
}

.product-info {
  flex: 1;
  min-width: 0;
}

.product-name {
  font-weight: 600;
  color: #333;
  font-size: 13px;
  margin-bottom: 4px;
}

.product-details {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: #666;
}

.product-quantity {
  background: #e3f2fd;
  color: #1976d2;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 500;
}

.product-price {
  color: #999;
}

.product-total {
  font-weight: 700;
  color: #4caf50;
  font-size: 13px;
  text-align: right;
  min-width: 70px;
}

.empty-products {
  text-align: center;
  padding: 20px;
  color: #999;
  font-size: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.empty-products i {
  font-size: 24px;
  color: #ddd;
}

.modal-footer {
  display: flex;
  gap: 12px;
  padding: 24px;
  border-top: 1px solid #f0f0f0;
  background: #f9f9f9;
  border-radius: 0 0 12px 12px;
}

.modal-footer .btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-success {
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  color: white;
}

.btn-success:hover {
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
  transform: translateY(-2px);
}

.btn-secondary {
  background: #e0e0e0;
  color: #333;
}

.btn-secondary:hover {
  background: #d0d0d0;
}

/* ============================================ */
/* RESPONSIVE BILDIRIM SISTEMI                 */
/* ============================================ */

/* DESKTOP: Sağ üst köşede panel (≥769px) */
@media (min-width: 769px) {
  .payment-notifications-container {
    display: flex !important;
  }

  .payment-bell-container {
    display: none !important;
  }
}

/* RESPONSIVE: Aşağıya alınan panel (≤768px) */
@media (max-width: 768px) {
  .payment-notifications-container {
    width: calc(100% - 20px);
    top: auto;
    bottom: 20px;
    right: 10px;
    left: 10px;
    max-height: 400px;
  }

  .payment-detail-modal {
    width: 95%;
    max-height: 90vh;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
  }
}

/* TABLET VE KÜÇÜK EKRANLAR: Zil butonu (≤1024px) */
@media (max-width: 1024px) {
  .payment-notifications-container {
    display: none !important;
  }

  .payment-bell-container {
    display: block !important;
  }
}

/* Mobile Payment Bell Button and Dropdown */
.payment-bell-container {
  position: relative;
  margin-right: 20px;
}

.payment-bell-btn {
  position: relative;
  background: none;
  border: none;
  color: #333;
  font-size: 20px;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-bell-btn:active,
.payment-bell-btn:focus {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
}

.payment-bell-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
  color: white;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(244, 67, 54, 0.3);
  min-width: 24px;
}

.payment-bell-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 8px;
  min-width: 300px;
  max-width: 90vw;
  max-height: 400px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 9001;
  display: none;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.payment-bell-dropdown.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Mobile Full-Screen Modal Style */
@media (max-width: 1024px) {
  .payment-bell-dropdown {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    min-width: auto;
    max-width: 100%;
    max-height: 100%;
    border-radius: 0;
    border: none;
    margin-top: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    display: flex !important;
    flex-direction: column;
    opacity: 0;
    transform: translateY(100%);
    z-index: 10001;
  }

  .payment-bell-dropdown.show {
    opacity: 1;
    transform: translateY(0);
  }

  .bell-dropdown-inner {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -5px 40px rgba(0, 0, 0, 0.2);
    animation: slideUpModal 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  @keyframes slideUpModal {
    from {
      transform: translateY(100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  .bell-dropdown-header {
    padding: 16px;
    border-radius: 20px 20px 0 0;
    padding-bottom: 12px;
  }

  .bell-dropdown-header h4 {
    font-size: 16px;
  }

  .payment-bell-list {
    padding: 12px;
    max-height: calc(85vh - 60px);
  }
}

.bell-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #f0f0f0;
  background: linear-gradient(135deg, #006754 0%, #004d3f 100%);
  color: white;
  flex-shrink: 0;
}

.bell-dropdown-header h4 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  flex: 1;
}

.bell-header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

.clear-mobile-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.2s ease;
}

.clear-mobile-btn:active {
  background: rgba(255, 255, 255, 0.3);
}

.close-bell-dropdown-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s ease;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-bell-dropdown-btn:active {
  background: rgba(255, 255, 255, 0.3);
}
  transition: all 0.2s ease;
}

.clear-mobile-btn:active {
  background: rgba(255, 255, 255, 0.3);
}

.payment-bell-list {
  overflow-y: auto;
  max-height: 350px;
  padding: 8px;
}

.payment-bell-list::-webkit-scrollbar {
  width: 4px;
}

.payment-bell-list::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.payment-bell-list::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 4px;
}

.payment-bell-list::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.payment-bell-item {
  display: none !important;
}

.bell-item-icon {
  display: none !important;
}

.bell-item-info {
  display: none !important;
}

.bell-item-title {
  display: none !important;
}

.bell-item-time {
  display: none !important;
}

.bell-item-amount {
  display: none !important;
}

.bell-item-arrow {
  display: none !important;
}

/* Modern Mobile Notification Style */
.mobile-payment-notification {
  display: flex;
  align-items: stretch;
  margin-bottom: 10px;
  cursor: pointer;
  animation: slideInNotification 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideInNotification {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.mobile-notification-container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-left: 4px solid;
  border-left-color: #006754;
  border-radius: 8px;
  flex: 1;
  border: 1px solid rgba(102, 126, 234, 0.2);
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.12);
}

.mobile-payment-notification:active .mobile-notification-container {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.2), rgba(118, 75, 162, 0.2));
  border-left-color: #004d3f;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.mobile-notification-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #006754 0%, #004d3f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.mobile-notification-body {
  flex: 1;
  min-width: 0;
}

.mobile-notification-title {
  font-weight: 600;
  color: #333;
  font-size: 13px;
  margin-bottom: 3px;
}

.mobile-notification-details {
  font-size: 11px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dot-separator {
  color: #bbb;
  font-size: 8px;
}

.mobile-notification-amount {
  font-weight: 700;
  color: #4caf50;
  font-size: 14px;
  text-align: right;
  min-width: 65px;
}
