
/* Mobile app styles */
#app-container {
    position: relative;
    overflow: hidden;
}

/* Hide scrollbar but allow scrolling */
#main-app > div:first-child {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
#main-app > div:first-child::-webkit-scrollbar {
    display: none;
}

/* Bottom nav active state */
.bottom-nav a.active {
    color: #ec4899;
}

/* Pulse animation for notifications */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.has-notification {
    position: relative;
    animation: pulse 2s infinite;
}
.has-notification::after {
    content: "";
    position: absolute;
    top: 2px;
    right: 2px;
    width: 8px;
    height: 8px;
    background-color: #ec4899;
    border-radius: 50%;
}
/* Mobile-first styles */
@media (min-width: 768px) {
  .md\:flex-row {
    flex-direction: row;
  }
  .md\:w-1\/2 {
    width: 50%;
  }
}

/* Security elements */
.security-alert {
  background-color: rgba(239, 68, 68, 0.1);
  border-left: 4px solid #ef4444;
  padding: 12px;
  margin-bottom: 16px;
}

/* Crypto wallet display */
.wallet-address {
  font-family: monospace;
  background: #111827;
  color: #10b981;
  padding: 8px;
  border-radius: 4px;
  font-size: 12px;
  word-break: break-all;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8b5cf6;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #7c3aed;
}

/* Custom components */
.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
}