* {
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0f172a;
    color: #f1f5f9;
}

.glass-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(51, 65, 85, 0.3);
}

.tx-card {
    transition: all 0.3s ease;
}

.tx-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.tx-card.active {
    background: rgba(96, 165, 250, 0.1);
    border-color: #60a5fa;
}

.input-field {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid #334155;
}

.input-field:focus {
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.2);
}

.btn-primary {
    background: linear-gradient(135deg, #60a5fa, #8b5cf6);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(96, 165, 250, 0.2), 0 4px 6px -2px rgba(96, 165, 250, 0.1);
}

.btn-secondary {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid #334155;
}

.btn-secondary:hover {
    background: rgba(51, 65, 85, 0.3);
}

.expandable-section {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.expandable-section.open {
    max-height: 500px;
}

.wallet-connect-btn {
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid #22c55e;
}

.wallet-connect-btn:hover {
    background: rgba(34, 197, 94, 0.2);
}

.transaction-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.send-icon {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
}

.destroy-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.cancel-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: #1e293b;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.wallet-option {
    transition: all 0.2s ease;
}

.wallet-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Success Modal */
.success-modal {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.transaction-details {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 12px;
}


.toast-zindex {
    z-index: 1001;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(10px); }
  }
  
  .animate-fadeIn {
    animation: fadeIn 0.3s ease-out;
  }
  
  .animate-fadeOut {
    animation: fadeOut 0.3s ease-in;
  }