/* Wallet Modal Styles */
.wallet-modal .modal-content {
    max-width: 500px;
    border-radius: 20px;
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-modal .modal-header {
    padding: 30px 30px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.wallet-modal .modal-header h2 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.wallet-modal .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.wallet-modal .close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.wallet-modal .modal-body {
    padding: 30px;
}

.wallet-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.wallet-option {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.02);
}

.wallet-option:hover {
    border-color: var(--primary-blue);
    background: rgba(0, 191, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.1);
}

.wallet-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
}

.wallet-info {
    flex: 1;
}

.wallet-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 5px;
}

.wallet-status {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Wallet Details Modal */
.wallet-details-modal .modal-content {
    max-width: 600px;
}

.wallet-details-content {
    margin-bottom: 30px;
}

.wallet-detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.wallet-detail-item label {
    font-weight: 600;
    color: var(--text-secondary);
    min-width: 100px;
}

.wallet-detail-item span {
    color: var(--text-color);
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
}

.address-full {
    word-break: break-all;
    max-width: 300px;
    text-align: right;
}

.wallet-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-danger {
    background: #EF4444;
    color: white;
}

.btn-danger:hover {
    background: #DC2626;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .wallet-modal .modal-content,
    .wallet-details-modal .modal-content {
        margin: 20px;
        max-width: none;
        width: calc(100% - 40px);
    }
    
    .wallet-modal .modal-header,
    .wallet-modal .modal-body {
        padding: 20px;
    }
    
    .wallet-option {
        padding: 15px;
        gap: 15px;
    }
    
    .wallet-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .address-full {
        max-width: 200px;
        font-size: 0.8rem;
    }
    
    .wallet-actions {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
    }
}

/* Animation keyframes */
@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

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